eShopOnContainers/src/Web/Catalog.WebForms/docker-compose.vs.debug.yml
Bill Wagner ed61af1d09 interim checkin
Tried to get all the services launched via Visual Studio.  After adding
the SQL engine and catalog container, it failed.
2017-03-03 11:21:46 -05:00

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"