Skip to content

Commit 22a335e

Browse files
committed
Updated README
1 parent 9f4498c commit 22a335e

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99

1010
# Supported tags and respective `Dockerfile` links
1111

12-
- `debian`, `latest` [![Docker Image Size (Debian)](https://img.shields.io/docker/image-size/jmcombs/sftp/debian?logo=debian)](https://github.com/atmoz/sftp/blob/master/Dockerfile "Dockerfile")
13-
- `alpine` [![Docker Image Size (Alpine)](https://img.shields.io/docker/image-size/jmcombs/sftp/alpine?logo=alpine%20linux)](https://github.com/atmoz/sftp/blob/master/Dockerfile-alpine "Dockerfile")
12+
- `debian`, `latest` [![Docker Image Size (Debian)](https://img.shields.io/docker/image-size/jmcombs/sftp/debian?logo=debian)](https://github.com/jmcombs/sftp/blob/master/Dockerfile "Dockerfile")
13+
- `alpine` [![Docker Image Size (Alpine)](https://img.shields.io/docker/image-size/jmcombs/sftp/alpine?logo=alpine%20linux)](https://github.com/jmcombs/sftp/blob/master/Dockerfile-alpine "Dockerfile")
1414

1515
# Securely share your files
1616

17-
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).
1818

1919
# Usage
2020

@@ -39,7 +39,7 @@ Easy to use SFTP ([SSH File Transfer Protocol](https://en.wikipedia.org/wiki/SSH
3939
## Simplest docker run example
4040

4141
```
42-
docker run -p 22:22 -d atmoz/sftp foo:pass:::upload
42+
docker run -p 22:22 -d jmcombs/sftp foo:pass:::upload
4343
```
4444

4545
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:
5151
```
5252
docker run \
5353
-v <host-dir>/upload:/home/foo/upload \
54-
-p 2222:22 -d atmoz/sftp \
54+
-p 2222:22 -d jmcombs/sftp \
5555
foo:pass:1001
5656
```
5757

5858
### Using Docker Compose:
5959

6060
```
6161
sftp:
62-
image: atmoz/sftp
62+
image: jmcombs/sftp
6363
volumes:
6464
- <host-dir>/upload:/home/foo/upload
6565
ports:
@@ -77,7 +77,7 @@ The OpenSSH server runs by default on port 22, and in this example, we are forwa
7777
docker run \
7878
-v <host-dir>/users.conf:/etc/sftp/users.conf:ro \
7979
-v mySftpVolume:/home \
80-
-p 2222:22 -d atmoz/sftp
80+
-p 2222:22 -d jmcombs/sftp
8181
```
8282

8383
<host-dir>/users.conf:
@@ -95,7 +95,7 @@ Add `:e` behind password to mark it as encrypted. Use single quotes if using ter
9595
```
9696
docker run \
9797
-v <host-dir>/share:/home/foo/share \
98-
-p 2222:22 -d atmoz/sftp \
98+
-p 2222:22 -d jmcombs/sftp \
9999
'foo:$1$0G2g0GSt$ewU0t6GXG15.0hWoOX8X9.:e:1001'
100100
```
101101

@@ -111,7 +111,7 @@ docker run \
111111
-v <host-dir>/id_rsa.pub:/home/foo/.ssh/keys/id_rsa.pub:ro \
112112
-v <host-dir>/id_other.pub:/home/foo/.ssh/keys/id_other.pub:ro \
113113
-v <host-dir>/share:/home/foo/share \
114-
-p 2222:22 -d atmoz/sftp \
114+
-p 2222:22 -d jmcombs/sftp \
115115
foo::1001
116116
```
117117

@@ -124,7 +124,7 @@ docker run \
124124
-v <host-dir>/ssh_host_ed25519_key:/etc/ssh/ssh_host_ed25519_key \
125125
-v <host-dir>/ssh_host_rsa_key:/etc/ssh/ssh_host_rsa_key \
126126
-v <host-dir>/share:/home/foo/share \
127-
-p 2222:22 -d atmoz/sftp \
127+
-p 2222:22 -d jmcombs/sftp \
128128
foo::1001
129129
```
130130

@@ -165,7 +165,7 @@ bindmount /data/common /home/peter/common
165165
bindmount /data/docs /home/peter/docs --read-only
166166
```
167167

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/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).
169169

170170
# What's the difference between Debian and Alpine?
171171

0 commit comments

Comments
 (0)