1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
This commit is contained in:
kev 2015-06-09 23:18:00 +08:00
parent 0010ef3c3e
commit c975b5caaf
2 changed files with 28 additions and 0 deletions

19
pure-ftpd/README.md Normal file

@ -0,0 +1,19 @@
`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
```

@ -0,0 +1,9 @@
ftpd:
image: vimagick/pure-ftpd
ports:
- "21:21"
volumes:
- ftpuser:/home/ftpuser
- pure-ftpd:/etc/pure-ftpd
privileged: true
restart: always