Go to file
Thomas VIAL f97eaee38c Added basic README. 2015-03-28 16:04:09 +01:00
Dockerfile First commit. Need to add README and default configurations. 2015-03-28 15:59:15 +01:00
README.md Added basic README. 2015-03-28 16:04:09 +01:00
start-mailserver.sh First commit. Need to add README and default configurations. 2015-03-28 15:59:15 +01:00

README.md

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"