-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
61 lines (57 loc) · 1.36 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
version: "3.9"
services:
devbox:
container_name: devbox
image: healthsamurai/devbox:edge
depends_on:
- "db"
ports:
- 8888:8888
env_file:
# Enter you license data
- .license
environment:
# Aidbox settings
AIDBOX_PORT : 8888
AIDBOX_FHIR_VERSION : 4.0.0
AIDBOX_CLIENT_ID : root
AIDBOX_CLIENT_SECRET : secret
AIDBOX_ADMIN_ID : admin
AIDBOX_ADMIN_PASSWORD : secret
# Aidbox database connection settings
PGHOST : db
PGPORT : 5432
PGUSER : postgres
PGPASSWORD : postgres
PGDATABASE : devbox
db:
container_name: timescaledb
image: aidbox/ts-pg12
environment:
POSTGRES_PASSWORD: postgres
volumes:
- "./pgdata:/var/lib/postgresql/data"
app:
container_name: app
image: aidbox/aidbox-ts-app:main
depends_on:
- "devbox"
environment:
APP_INIT_URL : http://devbox:8888
APP_URL : http://app:8989
APP_PORT : 8989
ui:
container_name: ui
image: aidbox/aidbox-ts-ui:main
ports:
- "8585:80"
grafana:
container_name: grafana
image: grafana/grafana
environment:
GF_SECURITY_ALLOW_EMBEDDING: "true"
GF_AUTH_ANONYMOUS_ENABLED: "true"
volumes:
- "./grafanadata:/var/lib/grafana"
ports:
- 3000:3000