-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.debug.yml
More file actions
44 lines (41 loc) · 1.01 KB
/
docker-compose.debug.yml
File metadata and controls
44 lines (41 loc) · 1.01 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
40
41
42
43
44
# Docker Compose debug file with all three services: orchestratorwebapp, agentservice, and orchestratorservice
services:
orchestratorwebapp:
image: orchestratorwebapp
build:
context: .
dockerfile: OrchestratorWebApp/Dockerfile
args:
- configuration=Debug
ports:
- 5264:5264
environment:
- ASPNETCORE_ENVIRONMENT=Development
volumes:
- ~/.vsdbg:/remote_debugger:rw
agentservice:
image: agentservice
build:
context: .
dockerfile: AgentService/Dockerfile
args:
- configuration=Debug
ports:
- 5001:5001
environment:
- ASPNETCORE_ENVIRONMENT=Development
volumes:
- ~/.vsdbg:/remote_debugger:rw
orchestratorservice:
image: orchestratorservice
build:
context: .
dockerfile: OrchestratorService/Dockerfile
args:
- configuration=Debug
ports:
- 5002:5002
environment:
- ASPNETCORE_ENVIRONMENT=Development
volumes:
- ~/.vsdbg:/remote_debugger:rw