Tried to get all the services launched via Visual Studio. After adding the SQL engine and catalog container, it failed.
29 lines
731 B
YAML
29 lines
731 B
YAML
version: '2.1'
|
|
|
|
services:
|
|
catalog.api:
|
|
image: eshop/catalog.api:dev
|
|
build:
|
|
args:
|
|
source: ${DOCKER_BUILD_SOURCE}
|
|
environment:
|
|
- DOTNET_USE_POLLING_FILE_WATCHER=1
|
|
volumes:
|
|
- ../../Services/Catalog/Catalog.API:/app
|
|
- ~/.nuget/packages:/root/.nuget/packages:ro
|
|
- ~/clrdbg:/clrdbg:ro
|
|
entrypoint: tail -f /dev/null
|
|
labels:
|
|
- "com.microsoft.visualstudio.targetoperatingsystem=linux"
|
|
|
|
catalog.webforms:
|
|
image: catalog.webforms:dev
|
|
build:
|
|
args:
|
|
source: ${DOCKER_BUILD_SOURCE}
|
|
volumes:
|
|
- .\Catalog.WebForms:C:\inetpub\wwwroot
|
|
- ~\msvsmon:C:\msvsmon:ro
|
|
labels:
|
|
- "com.microsoft.visualstudio.targetoperatingsystem=windows"
|