1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/pure-ftpd
2015-06-09 23:18:00 +08:00
..
docker-compose.yml update 2015-06-09 23:18:00 +08:00
Dockerfile update 2015-06-09 23:14:02 +08:00
README.md update 2015-06-09 23:18:00 +08: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