Forked from jjuanrivvera99/mssql-docker-compose.yml
Created
November 24, 2024 20:55
-
-
Save joekakone/13fc75921672059ce4bbec0c3b2e9e70 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