Added basic README.

This commit is contained in:
Thomas VIAL 2015-03-28 16:04:09 +01:00
parent 4227d04753
commit f97eaee38c
1 changed files with 30 additions and 0 deletions

30
README.md Normal file
View File

@ -0,0 +1,30 @@
# docker-mailserver
## installation
TODO when automatic build will be enabled.
## build
docker build -t tvial/docker-mailserver .
## docker-compose template
mail:
build: .
hostname: mail
domainname: my-domain.com
ports:
- "25:25"
- "143:143"
- "587:587"
- "993:993"
volumes:
- ./configs/courier:/etc/courier
- ./configs/postfix:/etc/postfix
- ./configs/spamassassin:/etc/spamassassin
environment:
docker_mail_domain: "my-domain.com"
docker_mail_users:
- "username1@my-domain.com|username1password"
- "username2@my-domain.com|username2password"