You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
485 B
25 lines
485 B
2 years ago
|
version: '3.4'
|
||
|
|
||
|
services:
|
||
|
sqlserver:
|
||
|
image: mcr.microsoft.com/mssql/server
|
||
|
volumes:
|
||
|
- dbdata:/var/opt/mssql
|
||
|
|
||
|
identity-server:
|
||
|
build:
|
||
|
context: ../../
|
||
|
dockerfile: templates/service/host/IdentityServerHost/Dockerfile
|
||
|
depends_on:
|
||
|
- sqlserver
|
||
|
|
||
|
wms-web-api:
|
||
|
build:
|
||
|
context: ../../
|
||
|
dockerfile: templates/service/host/WmsWebApi.Host/Dockerfile
|
||
|
depends_on:
|
||
|
- sqlserver
|
||
|
- identity-server
|
||
|
|
||
|
volumes:
|
||
|
dbdata:
|