mirror of
https://github.com/atmoz/sftp.git
synced 2024-11-17 12:51:33 -05:00
Provide example SFTP_USERS usage.
This commit is contained in:
parent
f735906a35
commit
ebd64292fa
1 changed files with 14 additions and 0 deletions
14
README.md
14
README.md
|
@ -64,6 +64,20 @@ sftp:
|
||||||
command: foo:pass:1001
|
command: foo:pass:1001
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Using the `SFTP_USERS` environment variable with multiple users:
|
||||||
|
|
||||||
|
```
|
||||||
|
sftp:
|
||||||
|
image: atmoz/sftp
|
||||||
|
volumes:
|
||||||
|
- <host-dir>/upload-one:/home/foo/upload
|
||||||
|
- <host-dir>/upload-two:/home/bar/upload
|
||||||
|
ports:
|
||||||
|
- "2222:22"
|
||||||
|
environment:
|
||||||
|
- SFTP_USERS=foo:pass1:1001 bar:pass2:1002
|
||||||
|
```
|
||||||
|
|
||||||
### Logging in
|
### Logging in
|
||||||
|
|
||||||
The OpenSSH server runs by default on port 22, and in this example, we are forwarding the container's port 22 to the host's port 2222. To log in with the OpenSSH client, run: `sftp -P 2222 foo@<host-ip>`
|
The OpenSSH server runs by default on port 22, and in this example, we are forwarding the container's port 22 to the host's port 2222. To log in with the OpenSSH client, run: `sftp -P 2222 foo@<host-ip>`
|
||||||
|
|
Loading…
Reference in a new issue