Skip to content

Instantly share code, notes, and snippets.

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 fabianwilliams-zz/b8b97bf1b11b7c1799056dc19c272108 to your computer and use it in GitHub Desktop.
Save fabianwilliams-zz/b8b97bf1b11b7c1799056dc19c272108 to your computer and use it in GitHub Desktop.
This Docker Compose file will pull down my image from Dockerhub and create you the WebAPI backed by MSSQL Linux
version: "3"
services:
web:
image: "fabianwilliams/fabsevalswebapi"
build: .
ports:
- "8000:80"
depends_on:
- db
db:
image: "microsoft/mssql-server-linux"
ports:
- "1433:1433"
environment:
SA_PASSWORD: "P@ssword1!"
ACCEPT_EULA: "Y"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment