Skip to content

Instantly share code, notes, and snippets.

@rafaeldalsenter
Last active April 2, 2020 21:25
Show Gist options
  • Save rafaeldalsenter/5af6a0f70e5739c558df49655a440ac6 to your computer and use it in GitHub Desktop.
Save rafaeldalsenter/5af6a0f70e5739c558df49655a440ac6 to your computer and use it in GitHub Desktop.
Dockerfile para artigo "Docker compose: Nginx + aplicação web + banco de dados"
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