-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathdocker-compose.dev.yml
71 lines (57 loc) · 1.86 KB
/
docker-compose.dev.yml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
version: "3.9"
services:
api:
container_name: logistics-api
build:
context: ./
dockerfile: src/Api/Logistics.WebApi/Dockerfile
ports:
- "7000:443"
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=https://+:443
- ASPNETCORE_Kestrel__Certificates__Default__Password=Test12345#
- ASPNETCORE_Kestrel__Certificates__Default__Path=/https/aspnetapp.pfx
volumes:
- ~/.vsdbg:/remote_debugger:rw
- ~/.aspnet/https:/https:ro
identity-server:
container_name: logistics-identity
build:
context: ./
dockerfile: src/Apps/Logistics.IdentityServer/Dockerfile
ports:
- "7001:443"
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=https://+:443
- ASPNETCORE_Kestrel__Certificates__Default__Password=Test12345#
- ASPNETCORE_Kestrel__Certificates__Default__Path=/https/aspnetapp.pfx
volumes:
- ~/.vsdbg:/remote_debugger:rw
- ~/.aspnet/https:/https:ro
admin-app:
container_name: logistics-admin
build:
context: ./
dockerfile: src/Apps/Logistics.AdminApp/Dockerfile
ports:
- "7002:443"
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=https://+:443
- ASPNETCORE_Kestrel__Certificates__Default__Password=Test12345#
- ASPNETCORE_Kestrel__Certificates__Default__Path=/https/aspnetapp.pfx
volumes:
- ~/.vsdbg:/remote_debugger:rw
- ~/.aspnet/https:/https:ro
office-app:
container_name: logistics-office
build:
context: ./
dockerfile: src/Apps/Logistics.OfficeApp/Dockerfile
ports:
- "7003:7003"
volumes:
- ./src/Apps/Logistics.OfficeApp/src:/app/src
- ./src/Apps/Logistics.OfficeApp/node_modules:/app/node_modules