Skip to content

Instantly share code, notes, and snippets.

@icavalheiro
Created December 5, 2020 03:40
Show Gist options
  • Save icavalheiro/aa9dcbc6f14fe5ba0452184737c171ad to your computer and use it in GitHub Desktop.
Save icavalheiro/aa9dcbc6f14fe5ba0452184737c171ad to your computer and use it in GitHub Desktop.
docker-compose for a mssql database using express pid
version: '3'
services:
mssql:
image: mcr.microsoft.com/mssql/server:2019-CU8-ubuntu-16.04
container_name: "MS_SQL"
ports:
- "1433:1433"
volumes:
- ./db:/var/opt/mssql
environment:
- "ACCEPT_EULA=Y"
- "SA_PASSWORD=PASS123@@"
- "MSSQL_PID=Express"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment