Skip to content

Instantly share code, notes, and snippets.

@lukecurtis93
Created February 21, 2020 01:08
Show Gist options
  • Save lukecurtis93/8833461347de5ce099419a639dda46ac to your computer and use it in GitHub Desktop.
Save lukecurtis93/8833461347de5ce099419a639dda46ac to your computer and use it in GitHub Desktop.
MSSQL Server on MacOS
version: "3"
services:
mssql:
image: "mcr.microsoft.com/mssql/server:2019-latest"
environment:
SA_PASSWORD: "SuperS3Cret"
ACCEPT_EULA: "Y"
MSSQL_AGENT_ENABLED: "true"
ports:
- "2500:1433"
@lukecurtis93
Copy link
Author

credit to @williamhenry94

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment