Created
July 19, 2018 04:27
-
-
Save jinhduong/b891c32490590542dab70eef7f75634c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
version: '3' | |
services: | |
staging.api: | |
build: . | |
ports: | |
- "5000:80" | |
environment: | |
- ASPNETCORE_ENVIRONMENT=Staging | |
production.api: | |
build: . | |
ports: | |
- "5001:80" | |
environment: | |
- ASPNETCORE_ENVIRONMENT=Production |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment