Skip to content

Instantly share code, notes, and snippets.

@adilsoncarvalho
Created March 4, 2017 22:42
Show Gist options
  • Save adilsoncarvalho/b6322815b30b83e213625b90511dc2bf to your computer and use it in GitHub Desktop.
Save adilsoncarvalho/b6322815b30b83e213625b90511dc2bf to your computer and use it in GitHub Desktop.
This will resolve the filesystem issue between Docker and macOS for MSSQL Server
version: "2"
services:
mssql:
image: microsoft/mssql-server-linux
volumes:
- mssql-volume:/var/opt/mssql
environment:
- ACCEPT_EULA=Y
- SA_PASSWORD=Test@123
ports:
- "1433:1433"
volumes:
mssql-volume:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment