-
-
Save dsartori/3b40c1df631e13ee9f827d163dae4388 to your computer and use it in GitHub Desktop.
SQL Server with Docker Compose
This file contains hidden or 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
| version: '3.3' | |
| services: | |
| mssql: | |
| container_name: sql-server | |
| image: mcr.microsoft.com/mssql/server:2017-latest | |
| #image: mcr.microsoft.com/mssql/server:2017-CU11-ubuntu | |
| restart: always | |
| environment: | |
| ACCEPT_EULA: "Y" | |
| SA_PASSWORD: "Contraseña12345678" | |
| ports: | |
| - 1433:1433 | |
| volumes: | |
| - my-volume:/var/opt/mssql | |
| volumes: | |
| my-volume: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment