2014-10-06 15:40:59 -04:00
sftp
====
SFTP Docker image
Usage
-----
2014-10-15 16:26:16 -04:00
- Define users and passwords in comma separated list with SFTP_USERS ("user1:pass1,user2:pass2").
- Mount volumes in user's home folder.
2014-10-15 16:28:35 -04:00
The users are chrooted to their home folders, so it is important to mount the volumes in separate folders inside the user's home folder (/home/your-user/**your-folder**).
2014-10-15 16:26:16 -04:00
Example
-------
2014-10-06 18:25:49 -04:00
```
docker run \
2014-10-15 16:26:16 -04:00
-e SFTP_USERS="foo:pass,bar:pass" \
-v "ebooks:/home/foo/ebooks" \
-v "http:/home/bar/http" \
2014-10-06 18:25:49 -04:00
-p 2222:22 -d atmoz/sftp
```