Last active
April 2, 2020 21:25
-
-
Save rafaeldalsenter/62f1fa5ea8f697f7e95799f77fb2f46c to your computer and use it in GitHub Desktop.
Dockerfile do nginx para o 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
nginx: | |
build: | |
dockerfile: ./docker/nginx.dockerfile | |
context: . | |
image: nginx | |
container_name: container-lb | |
ports: | |
- "80:80" | |
networks: | |
- minha-rede | |
depends_on: | |
- "app1" | |
- "app2" | |
- "app3" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment