Last active
June 27, 2024 08:34
-
-
Save skylock/a591742be927c1cd8fd7a27e4abcea08 to your computer and use it in GitHub Desktop.
mssql-server-docker.yml
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
version: '3.4' | |
services: | |
db: | |
image: "mcr.microsoft.com/mssql/server:2017-latest" | |
container_name: "monetoplus-mssql" | |
ports: | |
- "1433:1433" | |
environment: | |
SA_PASSWORD: "Pass@word" | |
ACCEPT_EULA: "Y" | |
volumes: | |
- mssql_data:/var/opt/mssql/data | |
volumes: | |
mssql_data: |
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
services: | |
db: | |
image: "microsoft/mssql-server-linux" | |
container_name: "mssql" | |
ports: | |
- "1433:1433" | |
environment: | |
MSSQL_SA_PASSWORD: "Pass@word" | |
ACCEPT_EULA: "Y"% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment