-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.debug.yml
More file actions
39 lines (37 loc) · 1.05 KB
/
docker-compose.debug.yml
File metadata and controls
39 lines (37 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
version: '3'
services:
application-web:
build:
context: .
dockerfile: ./application.web/Dockerfile.dev
environment:
- ASPNETCORE_ENVIRONMENT=Development
- DOTNET_USE_POLLING_FILE_WATCHER=1
volumes:
- ./application.web:/src/application.web
- /src/application.web/bin
- /src/application.web/obj
ports:
- 3000:80
# depends_on:
# - application-test
entrypoint: dotnet watch run --no-restore
# application-test:
# build:
# context: .
# dockerfile: ./application.web/Dockerfile.dev
# environment:
# - ASPNETCORE_ENVIRONMENT=Development
# - DOTNET_USE_POLLING_FILE_WATCHER=1
# volumes:
# - ./application.web:/src/application.web
# - /src/application.web/bin
# - /src/application.web/obj
# - ./application.test:/src/application.test
# - /src/application.test/bin
# - /src/application.test/obj
# ports:
# - 3001:80
# working_dir: /src/application.test
# tty: true
# entrypoint: dotnet watch test --no-restore