Created
August 9, 2016 01:18
-
-
Save brampersandon/da8d12cb60c7d65190beea6755e8a805 to your computer and use it in GitHub Desktop.
Docker Compose is Cool!
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
nginx: | |
build: ./loadbalancer | |
links: | |
- api | |
- messenger | |
ports: | |
- "80:80" | |
- "443:443" | |
api: | |
build: ./api | |
ports: | |
- "8000:8000" | |
messenger: | |
build: ./messenger | |
ports: | |
- "9000:9000" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment