Last active
June 28, 2018 21:53
-
-
Save Signorini/c0b10b905b0ed816f7f1c1d10c667f73 to your computer and use it in GitHub Desktop.
docker-compose server
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
server: | |
image: maestroserver/server-maestro | |
ports: | |
- "8888:8888" | |
environment: | |
- "MAESTRO_MONGO_URI=mongodb/maestro-client" | |
- "MAESTRO_DISCOVERY_URI=http://discovery:5000" | |
- "MAESTRO_REPORT_URI=http://reports:5005" | |
- "SMTP_PORT=25" | |
- "SMTP_HOST=maildev" | |
- "[email protected]" | |
- "SMTP_IGNORE=true" | |
depends_on: | |
- mongodb | |
- discovery | |
- reports |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment