Skip to content

Instantly share code, notes, and snippets.

@skylock
Last active June 27, 2024 08:34
Show Gist options
  • Save skylock/a591742be927c1cd8fd7a27e4abcea08 to your computer and use it in GitHub Desktop.
Save skylock/a591742be927c1cd8fd7a27e4abcea08 to your computer and use it in GitHub Desktop.
mssql-server-docker.yml
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:
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