10 lines
221 B
YAML
10 lines
221 B
YAML
services:
|
|
sftp:
|
|
image: atmoz/sftp:latest
|
|
container_name: sftp
|
|
ports:
|
|
- "22345:22"
|
|
volumes:
|
|
- ./data/test:/home/test:rw
|
|
- ./users.conf:/etc/sftp/users.conf:ro
|
|
restart: unless-stopped |