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.

17 lines
409 B

  1. version: '2'
  2. services:
  3. eshopweb:
  4. image: eshop/web:dev
  5. build:
  6. args:
  7. source: ${DOCKER_BUILD_SOURCE}
  8. environment:
  9. - DOTNET_USE_POLLING_FILE_WATCHER=1
  10. volumes:
  11. - ./eShopWeb:/app
  12. - ~/.nuget/packages:/root/.nuget/packages:ro
  13. - ~/clrdbg:/clrdbg:ro
  14. entrypoint: tail -f /dev/null
  15. labels:
  16. - "com.microsoft.visualstudio.targetoperatingsystem=linux"