forked from colinin/abp-next-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.override.windows.yml
79 lines (69 loc) · 2.04 KB
/
docker-compose.override.windows.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
72
73
74
75
76
77
78
79
version: '3.4'
services:
identity-server-sts:
build:
context: ./aspnet-core/services/Publish/identityserver
volumes:
- D:\Projects\Development\Abp\Application\logs\ids-sts:/app/Logs
restart: always
identity-server-admin:
build:
context: ./aspnet-core/services/Publish/identityserver4-admin
volumes:
- D:\Projects\Development\Abp\Application\logs\ids-admin:/app/Logs
depends_on:
- identity-server-sts
restart: always
admin-service:
build:
context: ./aspnet-core/services/Publish/admin
volumes:
- D:\Projects\Development\Abp\Application\logs\backend-admin:/app/Logs
depends_on:
- identity-server-sts
restart: always
localization-service:
build:
context: ./aspnet-core/services/Publish/localization
volumes:
- D:\Projects\Development\Abp\Application\logs\localization:/app/Logs
restart: always
platform-service:
build:
context: ./aspnet-core/services/Publish/platform
volumes:
- D:\Projects\Development\Abp\Application\logs\platform:/app/Logs
- D:\Projects\Development\Abp\Application\data\platform:/app/file-blob-storing
depends_on:
- identity-server-sts
restart: always
messages-service:
build:
context: ./aspnet-core/services/Publish/messages
volumes:
- D:\Projects\Development\Abp\Application\logs\messages:/app/Logs
depends_on:
- identity-server-sts
restart: always
apigateway-admin-service:
build:
context: ./aspnet-core/services/Publish/apigateway-admin
volumes:
- D:\Projects\Development\Abp\Application\logs\apigateway-admin:/app/Logs
depends_on:
- identity-server-sts
- admin-service
restart: always
apigateway-host-service:
build:
context: ./aspnet-core/services/Publish/apigateway-host
volumes:
- D:\Projects\Development\Abp\Application\logs\apigateway-host:/app/Logs
depends_on:
- identity-server-sts
- apigateway-admin-service
restart: always
volumes:
dbdata:
networks:
linyun-abp: