-
Notifications
You must be signed in to change notification settings - Fork 267
/
docker-compose.override.yml
134 lines (120 loc) · 3.47 KB
/
docker-compose.override.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
version: '3.4'
services:
sts-server:
build:
context: ./aspnet-core/services/Publish/identityserver
volumes:
- ./deploy/framework/ids-sts/logs:/app/Logs
- ./deploy/framework/ids-sts/modules:/app/Modules
restart: always
sts-api:
build:
context: ./aspnet-core/services/Publish/identityserver4-admin
volumes:
- ./deploy/framework/ids-admin/logs:/app/Logs
- ./deploy/framework/ids-admin/modules:/app/Modules
restart: always
depends_on:
- sts-server
# 取消注释以使用openiddict
# sts-server:
# build:
# context: ./aspnet-core/services/Publish/authserver
# volumes:
# - ./deploy/framework/ids-sts/logs:/app/Logs
# - ./deploy/framework/ids-sts/modules:/app/Modules
# restart: always
# 取消注释以使用openiddict
# sts-api:
# build:
# context: ./aspnet-core/services/Publish/authserver-api
# volumes:
# - ./deploy/framework/ids-admin/logs:/app/Logs
# - ./deploy/framework/ids-admin/modules:/app/Modules
# restart: always
# depends_on:
# - sts-server
admin-api:
build:
context: ./aspnet-core/services/Publish/admin
volumes:
- ./deploy/framework/ids-admin/logs:/app/Logs
- ./deploy/framework/ids-admin/modules:/app/Modules
restart: always
depends_on:
- sts-server
localization-api:
build:
context: ./aspnet-core/services/Publish/localization
volumes:
- ./deploy/framework/localization/logs:/app/Logs
- ./deploy/framework/localization/modules:/app/Modules
restart: always
depends_on:
- sts-server
platform-api:
build:
context: ./aspnet-core/services/Publish/platform
volumes:
- ./deploy/framework/platform/logs:/app/Logs
- ./deploy/framework/platform/modules:/app/Modules
- ./deploy/framework/platform/blobs:/app/file-blob-storing
restart: always
depends_on:
- sts-server
messages-api:
build:
context: ./aspnet-core/services/Publish/messages
volumes:
- ./deploy/framework/messages/logs:/app/Logs
- ./deploy/framework/messages/modules:/app/Modules
restart: always
depends_on:
- sts-server
task-api:
build:
context: ./aspnet-core/services/Publish/task-management
volumes:
- ./deploy/framework/task/logs:/app/Logs
- ./deploy/framework/task/modules:/app/Modules
restart: always
depends_on:
- sts-server
webhook-api:
build:
context: ./aspnet-core/services/Publish/webhooks
volumes:
- ./deploy/framework/webhook/logs:/app/Logs
- ./deploy/framework/webhook/modules:/app/Modules
restart: always
depends_on:
- sts-server
workflow-api:
build:
context: ./aspnet-core/services/Publish/workflow
volumes:
- ./deploy/framework/workflow/logs:/app/Logs
- ./deploy/framework/workflow/modules:/app/Modules
restart: always
depends_on:
- sts-server
wechat-api:
build:
context: ./aspnet-core/services/Publish/wechat
volumes:
- ./deploy/framework/wechat/logs:/app/Logs
- ./deploy/framework/wechat/modules:/app/Modules
restart: always
depends_on:
- sts-server
internal-apigateway:
build:
context: ./aspnet-core/services/Publish/internal-apigateway
volumes:
- ./deploy/framework/apigateway/logs:/app/Logs
- ./deploy/framework/apigateway/modules:/app/Modules
restart: always
ui:
build:
context: ./apps/vue
restart: always