Skip to content

Instantly share code, notes, and snippets.

@rafaeldalsenter
Last active April 2, 2020 21:26
Show Gist options
  • Save rafaeldalsenter/245cd1cfcecb301223d5010f48e70f50 to your computer and use it in GitHub Desktop.
Save rafaeldalsenter/245cd1cfcecb301223d5010f48e70f50 to your computer and use it in GitHub Desktop.
Docker-compose para artigo "Docker compose: Nginx + aplicação web + banco de dados"
sqlserver:
image: mcr.microsoft.com/mssql/server
container_name: container-sql
ports:
- "1433:1433"
environment:
SA_PASSWORD: "Docker12345"
ACCEPT_EULA: "Y"
networks:
- minha-rede
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment