Last active
April 2, 2020 21:25
-
-
Save rafaeldalsenter/5af6a0f70e5739c558df49655a440ac6 to your computer and use it in GitHub Desktop.
Dockerfile para artigo "Docker compose: Nginx + aplicação web + banco de dados"
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
app1: | |
image: docker-example-app | |
container_name: container-app1 | |
ports: | |
- "5000" | |
networks: | |
- minha-rede | |
depends_on: | |
- "sqlserver" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment