Skip to content

Instantly share code, notes, and snippets.

@xiaoysh8
Created July 7, 2021 09:35
Show Gist options
  • Save xiaoysh8/938ce15274950107c00176dc9a59a06b to your computer and use it in GitHub Desktop.
Save xiaoysh8/938ce15274950107c00176dc9a59a06b to your computer and use it in GitHub Desktop.
docker-compose-example
version: '3'
### MSSQL ################################################
services:
mssql:
build:
context: ./mssql
environment:
- MSSQL_PID=Express
- MSSQL_DATABASE=rundao
- SA_PASSWORD=RUNrundao!@#..
- ACCEPT_EULA=Y
volumes:
- ./mssql:/var/opt/mssql/data
ports:
- "1433:1433"
networks:
- rundao
aspnet:
build:
context: ./aspnet
volumes:
- ./app:/app
ports:
- "8888:80"
networks:
- rundao
networks:
rundao:
driver: bridge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment