1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-27 01:08:37 +00:00
dockerfiles/vsftpd/docker-compose.yml

12 lines
202 B
YAML
Raw Normal View History

2015-07-27 14:36:02 +00:00
vsftpd:
image: vimagick/vsftpd
ports:
2016-01-31 16:37:18 +00:00
- "20:20"
2015-07-27 14:36:02 +00:00
- "21:21"
2016-01-31 16:37:18 +00:00
- "30000-30010:30000-30010"
volumes:
- ./vsftpd:/etc/vsftpd
- ./ftp:/var/lib/ftp
2015-07-27 14:36:02 +00:00
privileged: true
restart: always