From 5ac53db2d5171fc132736d48af6cec3f09a8630e Mon Sep 17 00:00:00 2001 From: Jamie Nguyen Date: Sun, 15 Jul 2018 10:12:40 +0100 Subject: [PATCH] Fix command order --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5c44dd8..2ea3004 100644 --- a/README.md +++ b/README.md @@ -45,11 +45,12 @@ to send outgoing email. The SMTP container acts as a smart host and relays mail to an intermediate server server (eg, GMail, SendGrid). ``` -docker run --restart always --name mail -d bytemark/smtp \ +docker run --restart always --name mail \ -e RELAY_HOST=smtp.example.com \ -e RELAY_PORT=587 \ -e RELAY_USERNAME=alice@example.com \ - -e RELAY_PASSWORD=secretpassword + -e RELAY_PASSWORD=secretpassword \ + -d bytemark/smtp ```