From e988e7f513618fc3aea78b1a8e053fa0142b6864 Mon Sep 17 00:00:00 2001 From: Melroy van den Berg Date: Thu, 16 Jun 2016 14:33:30 +0200 Subject: [PATCH] Updated Install Wekan Docker in production (markdown) --- Install-Wekan-Docker-in-production.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Install-Wekan-Docker-in-production.md b/Install-Wekan-Docker-in-production.md index 40e417f..41ef290 100644 --- a/Install-Wekan-Docker-in-production.md +++ b/Install-Wekan-Docker-in-production.md @@ -45,7 +45,7 @@ wekandb: ## 3. Configure Mail Server You can choose to _NOT_ configure a mail server, by not providing the `MAIL_URL` & `MAIL_FROM` environment parameters. Instead the mail message will be send to the terminal output. See [FAQ](https://github.com/wekan/wekan/wiki/FAQ#show-mails-with-a-docker-image-without-mail-configuration) for more info. -If you want to configure a mail server, you could use a mail server out-side of your machine (like the example above). Or you could start another Docker container which runs Postfix (try the `marvambass/versatile-postfix` Docker image). +If you want to configure a mail server, you could use a mail server out-side of your machine (like the example above). Or you could start another Docker container which runs Postfix (try the [`marvambass/versatile-postfix`](https://hub.docker.com/r/marvambass/versatile-postfix/) Docker image). If you already got a Postfix service running on your host machine, you can add the local IP address to the docker-compose.yml file and use the hostname in the `MAIL_URL`: ``` @@ -58,7 +58,7 @@ extra_hosts: ``` **Note:** `192.168.1.20` needs to be changed to your local server IP address. -And finally add the Docker IP range (172.17.x.x) to the Postfix trusted networks list (/etc/postfix/main.cf): +And finally add the Docker IP range (172.17.x.x) to the Postfix trusted networks list in `/etc/postfix/main.cf`: ``` mynetworks = 127.0.0.0/8 172.17.0.0/16 [::ffff:127.0.0.0]/104 [::1]/128 ```