Skip to content

Instantly share code, notes, and snippets.

@rafaeldalsenter
Last active April 2, 2020 21:25
Show Gist options
  • Save rafaeldalsenter/62f1fa5ea8f697f7e95799f77fb2f46c to your computer and use it in GitHub Desktop.
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"
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