Created
December 5, 2020 03:40
-
-
Save icavalheiro/aa9dcbc6f14fe5ba0452184737c171ad to your computer and use it in GitHub Desktop.
docker-compose for a mssql database using express pid
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' | |
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