Last active
April 2, 2020 21:26
-
-
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"
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
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