Created
July 6, 2017 14:34
-
-
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
This file contains 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: | |
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