1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-28 09:08:50 +02:00
dockerfiles/pure-ftpd/README.md

20 lines
505 B
Markdown
Raw Normal View History

2015-06-09 17:18:00 +02:00
`Pure-FTPd` is a free (BSD), secure, production-quality and standard-conformant
FTP server. It doesn't provide useless bells and whistles, but focuses on
efficiency and ease of use. It provides simple answers to common needs, plus
unique useful features for personal users as well as hosting providers.
## docker-compose.yml
```
pureftpd:
image: vimagick/pure-ftpd
ports:
- "21:21"
volumes:
- ftpuser:/home/ftpuser
- pure-ftpd:/etc/pure-ftpd
privileged: true
restart: always
```