-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
48 lines (48 loc) · 1.26 KB
/
docker-compose.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
version: '3'
services:
postgres:
image: postgres:latest
ports:
- 5432:5432
environment:
- POSTGRES_DB=hts
- POSTGRES_USER=hu-tao-mains
- POSTGRES_PASSWORD=hu-tao-mains
hts-svc-account:
image: ghcr.io/hu-tao-supremacy/account-prod:latest
ports:
- 50055:50055
environment:
- POSTGRES_HOST=postgres
- POSTGRES_USER=hu-tao-mains
- POSTGRES_PASSWORD=hu-tao-mains
- POSTGRES_DB=hts
- POSTGRES_PORT=5432
- GRPC_HOST=localhost
- GRPC_PORT=50055
- JWT_SECRET=hu-tao-mains
hts-svc-participant:
image: ghcr.io/hu-tao-supremacy/participant-prod:latest
ports:
- 50056:50056
environment:
- POSTGRES_HOST=postgres
- POSTGRES_USER=hu-tao-mains
- POSTGRES_PASSWORD=hu-tao-mains
- POSTGRES_DB=hts
- POSTGRES_PORT=5432
- GRPC_HOST=localhost
- GRPC_PORT=50056
hts-svc-organizer:
image: ghcr.io/hu-tao-supremacy/organizer-prod:latest
ports:
- 50057:50057
environment:
- POSTGRES_HOST=postgres
- POSTGRES_USER=hu-tao-mains
- POSTGRES_PASSWORD=hu-tao-mains
- POSTGRES_DB=hts
- POSTGRES_PORT=5432
- GRPC_HOST=localhost
- GRPC_PORT=50057
- HTS_SVC_ACCOUNT=hts-svc-account:50055