You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Easy to use SFTP ([SSH File Transfer Protocol](https://en.wikipedia.org/wiki/SSH_File_Transfer_Protocol)) server with [OpenSSH](https://en.wikipedia.org/wiki/OpenSSH).
17
+
Easy to use SFTP and SCP ([SSH File Transfer Protocol](https://en.wikipedia.org/wiki/SSH_File_Transfer_Protocol)) server with [OpenSSH](https://en.wikipedia.org/wiki/OpenSSH).
18
18
19
19
# Usage
20
20
@@ -39,7 +39,7 @@ Easy to use SFTP ([SSH File Transfer Protocol](https://en.wikipedia.org/wiki/SSH
39
39
## Simplest docker run example
40
40
41
41
```
42
-
docker run -p 22:22 -d atmoz/sftp foo:pass:::upload
42
+
docker run -p 22:22 -d jmcombs/sftp foo:pass:::upload
43
43
```
44
44
45
45
User "foo" with password "pass" can login with sftp and upload files to a folder called "upload". No mounted directories or custom UID/GID. Later you can inspect the files and use `--volumes-from` to mount them somewhere else (or see next example).
@@ -51,15 +51,15 @@ Let's mount a directory and set UID:
51
51
```
52
52
docker run \
53
53
-v <host-dir>/upload:/home/foo/upload \
54
-
-p 2222:22 -d atmoz/sftp \
54
+
-p 2222:22 -d jmcombs/sftp \
55
55
foo:pass:1001
56
56
```
57
57
58
58
### Using Docker Compose:
59
59
60
60
```
61
61
sftp:
62
-
image: atmoz/sftp
62
+
image: jmcombs/sftp
63
63
volumes:
64
64
- <host-dir>/upload:/home/foo/upload
65
65
ports:
@@ -77,7 +77,7 @@ The OpenSSH server runs by default on port 22, and in this example, we are forwa
**NOTE:** Using `mount` requires that your container runs with the `CAP_SYS_ADMIN` capability turned on. [See this answer for more information](https://github.com/atmoz/sftp/issues/60#issuecomment-332909232).
168
+
**NOTE:** Using `mount` requires that your container runs with the `CAP_SYS_ADMIN` capability turned on. [See this answer for more information](https://github.com/jmcombs/sftp/issues/60#issuecomment-332909232).
169
169
170
170
# What's the difference between Debian and Alpine?
0 commit comments