Created
August 9, 2017 10:52
-
-
Save GitSumito/a1a75ed7afbedc4e457ac43ae7602118 to your computer and use it in GitHub Desktop.
Docker上で動くre:dashのメールの送信設定 ref: http://qiita.com/S-T/items/04e28b6ec056ca99d28b
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vi docker-compose.production.yml | |
REDASH_MAIL_SERVER: "MAIL SERVER IP" | |
REDASH_MAIL_PORT: 25 | |
REDASH_MAIL_DEFAULT_SENDER: "[email protected]" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker stop $(docker ps -a -q) | |
docker-compose -f docker-compose.production.yml up -d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment