Fix command order

This commit is contained in:
Jamie Nguyen
2018-07-15 10:12:40 +01:00
parent 73992098bd
commit 5ac53db2d5

View File

@@ -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). 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_HOST=smtp.example.com \
-e RELAY_PORT=587 \ -e RELAY_PORT=587 \
-e RELAY_USERNAME=alice@example.com \ -e RELAY_USERNAME=alice@example.com \
-e RELAY_PASSWORD=secretpassword -e RELAY_PASSWORD=secretpassword \
-d bytemark/smtp
``` ```