-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yaml
88 lines (80 loc) · 2.06 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
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
version: '3.7'
volumes:
aidbox_pg_data: {}
services:
aidbox-db:
image: healthsamurai/aidboxdb:14.5
volumes:
- aidbox_pg_data:/data:delegated
environment:
PGDATA: /data
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
portal:
image: healthsamurai/smartbox:2412
depends_on: ["aidbox-db"]
links:
- "aidbox-db:database"
- "sandbox:sandbox"
ports:
- "8888:8888"
volumes:
- ./aidbox.json:/tmp/aidbox.json
environment:
BOX_INIT_BUNDLE: file:///tmp/aidbox.json
PGHOST: "database"
PGDATABASE: "portal"
BOX_AUTH_LOGIN__REDIRECT: "/admin/portal"
BOX_PROJECT_ENTRYPOINT: "smartbox.portal/box"
AIDBOX_LICENSE:
AIDBOX_BASE_URL: "http://localhost:8888"
BOX_SMARTBOX_SANDBOX__URL: "http://sandbox:8888"
BOX_SMARTBOX_SANDBOX__BASIC: "root:secret"
PGPORT: 5432
PGHOSTPORT: 5437
PGUSER: postgres
PGPASSWORD: postgres
AIDBOX_PORT: 8888
sandbox:
image: healthsamurai/smartbox:2412
depends_on: ["aidbox-db"]
links:
- "aidbox-db:database"
ports:
- "9999:8888"
environment:
PGHOST: "database"
PGDATABASE: "sandbox"
BOX_AUTH_LOGIN__REDIRECT: "/"
BOX_PROJECT_ENTRYPOINT: "smartbox.dev-portal/box"
AIDBOX_LICENSE:
AIDBOX_BASE_URL: "http://localhost:9999"
PGPORT: 5432
PGHOSTPORT: 5437
PGUSER: postgres
PGPASSWORD: postgres
AIDBOX_PORT: 8888
growth_chart:
build:
context: .
dockerfile: ./Dockerfile.growthchart
ports:
- 9000:9000
keycloak:
image: quay.io/keycloak/keycloak:26.0.6
volumes:
- ./keycloak.json:/opt/keycloak/data/import/keycloak.json
ports:
- 7777:7777
environment:
KC_HTTP_PORT: 7777
KC_BOOTSTRAP_ADMIN_USERNAME: admin
KC_BOOTSTRAP_ADMIN_PASSWORD: admin
command: start-dev --import-realm
launcher:
image: nginx:alpine
ports:
- "7070:80"
volumes:
- ./launcher.html:/usr/share/nginx/html/launcher.html:r