Skip to content

Instantly share code, notes, and snippets.

@SQLDBAWithABeard
Created January 19, 2019 16:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SQLDBAWithABeard/b589d499484af4ebfb7d637cb6b4efa3 to your computer and use it in GitHub Desktop.
Save SQLDBAWithABeard/b589d499484af4ebfb7d637cb6b4efa3 to your computer and use it in GitHub Desktop.
docker-compose.yml
version: '3.7'
services:
sql2012:
image: dbafromthecold/sqlserver2012dev:sp4
ports:
- "15589:1433"
environment:
SA_PASSWORD: "Password0!"
ACCEPT_EULA: "Y"
sql2014:
image: dbafromthecold/sqlserver2014dev:sp2
ports:
- "15588:1433"
environment:
SA_PASSWORD: "Password0!"
ACCEPT_EULA: "Y"
sql2016:
image: dbafromthecold/sqlserver2016dev:sp2
ports:
- "15587:1433"
environment:
SA_PASSWORD: "Password0!"
ACCEPT_EULA: "Y"
sql2017:
image: microsoft/mssql-server-windows-developer:2017-latest
ports:
- "15586:1433"
environment:
SA_PASSWORD: "Password0!"
ACCEPT_EULA: "Y"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment