forked from COMPASS-DPG/deployment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
complete-deployment-compass.yaml
129 lines (115 loc) · 2.5 KB
/
complete-deployment-compass.yaml
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
services:
postgres:
image: postgres:15.3-alpine
ports:
- 5432:5432
volumes:
- ./init-scripts:/docker-entrypoint-initdb.d
- ./postgres_data:/var/lib/postgresql/data
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
mongo:
image: mongo
restart: always
ports:
- '27017:27017'
volumes:
- ./dbdata6_data:/var/lib/dbdata6/data
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: mongo
redis:
image: redis:7.2.3
restart: always
ports:
- 6379:6379
minio:
image: minio/minio
container_name: minio
environment:
MINIO_ROOT_USER: myminio
MINIO_ROOT_PASSWORD: password@123D
volumes:
- ./minio_data:/data
ports:
- "9000:9000"
- "9001:9001"
command: server /data --console-address ":9001"
restart: unless-stopped
wpcas-survey-ui:
image: ghcr.io/compass/wpcas-survey-ui:0.1.3
restart: always
ports:
- 3300:3000
wpcas_service:
image: ghcr.io/compass/wpcas-service:0.1.10
restart: always
ports:
- 4010:4010
depends_on:
- postgres
wallet:
image: ghcr.io/compass/wallet-service:0.1.5
restart: always
ports:
- 4022:4022
depends_on:
- postgres
marketplace-ui:
image: ghcr.io/compass/marketplace-ui:0.1.7
restart: always
ports:
- "3400:3000"
marketplace_portal:
image: ghcr.io/compass/marketplace-portal:0.2.4
restart: always
ports:
- "4020:4020"
depends_on:
- postgres
bap_service:
image: ghcr.io/compass/bap:0.1.2
restart: always
ports:
- "4021:4021"
depends_on:
- redis
course_manager:
image: ghcr.io/compass/course-manager:0.2.1
restart: always
ports:
- "4030:4030"
depends_on:
- postgres
course-manager-ui:
image: ghcr.io/compass/3cp-ui:0.1.4
restart: always
ports:
- "3500:3000"
admin-ui:
image: ghcr.io/compass/admin-ui:0.1.4
restart: always
ports:
- "3200:3000"
passbook:
restart: always
image: ghcr.io/compass/passbook:0.1.5
ports:
- "3000:3000"
metabase:
image: metabase/metabase
container_name: metabase
restart: always
ports:
- "3060:3000"
environment:
MB_DB_TYPE: postgres
MB_DB_PORT: 5432
MB_DB_USER: postgres
MB_DB_PASS: postgres
MB_DB_HOST: postgres
MB_DB_DBNAME: postgres
depends_on:
- postgres