18 lines
560 B
YAML
18 lines
560 B
YAML
version: '3'
|
|
services:
|
|
sshd:
|
|
image: docker.io/atmoz/sftp:alpine
|
|
volumes:
|
|
- $DATA_DIR/ssh_host_ed25519_key:/etc/ssh/ssh_host_ed25519_key:ro
|
|
- $DATA_DIR/ssh_host_rsa_key:/etc/ssh/ssh_host_rsa_key:ro
|
|
- $DATA_DIR/users.conf:/etc/sftp/users.conf:ro
|
|
- $DOCKER_DIR/init.sh:/etc/sftp.d/init.sh:ro
|
|
|
|
- $DATA_DIR/home:/home
|
|
- $DATA_DIR/home/feministesucl34:/home/feministesucl34RO
|
|
- $DATA_DIR/home/leida:/home/leidaRO
|
|
- $DATA_DIR/home/chiloe:/home/chiloeRO
|
|
ports:
|
|
- '2929:22'
|
|
|