-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
83 lines (82 loc) · 1.79 KB
/
docker-compose.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
version: '3'
services:
pr:
build:
context: pr-mock
args:
D4R6Y: ${D4R6Y}
PIP_CONF: ${PIP_CONF}
APK_ARGS: ${APK_ARGS}
image: sia/pr
ports:
- "8010:8080"
uin:
build:
context: uin
args:
D4R6Y: ${D4R6Y}
PIP_CONF: ${PIP_CONF}
APK_ARGS: ${APK_ARGS}
image: sia/uin
ports:
- "8020:8080"
pr-portal:
build:
context: pr-portal
args:
D4R6Y: ${D4R6Y}
PIP_CONF: ${PIP_CONF}
APK_ARGS: ${APK_ARGS}
image: sia/pr-portal
environment:
- PR_URL=http://pr:8080
- UIN_URL=http://uin:8080
tty: true
ports:
- "8100:8080"
links:
- pr
- uin
notification:
build:
context: notification
args:
D4R6Y: ${D4R6Y}
PIP_CONF: ${PIP_CONF}
APK_ARGS: ${APK_ARGS}
image: sia/notification
ports:
- "8030:8080"
environment:
REDIS_URL: "redis://redis/0"
ROOT_URL: "http://notification:8080/"
links:
- redis
depends_on:
- redis
orchestrator:
build:
context: orchestrator
args:
D4R6Y: ${D4R6Y}
PIP_CONF: ${PIP_CONF}
APK_ARGS: ${APK_ARGS}
image: sia/orchestrator
ports:
- "8040:8080"
extra_hosts:
- "host.docker.internal:host-gateway"
environment:
NOTIFICATION_URL: "http://notification:8080/"
MY_URL: "http://orchestrator:8080/"
REDIS_URL: "redis://redis/1"
CR_URL: "http://host.docker.internal:8080/v1/persons"
PR_URL: "http://pr:8080/v1/persons"
links:
- notification
- redis
depends_on:
- notification
- redis
redis:
image: "${D4R6Y}redis:7.0.9-alpine"