generated from grongierisc/iris-fhirsqlbuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
72 lines (66 loc) · 1.46 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
version: '3.7'
services:
iris:
env_file: .env
build:
context: .
args:
- IMAGE=containers.intersystems.com/intersystems/irishealth-ml:2023.1.0.229.0
restart: unless-stopped
ports:
- 33782:1972
- 33783:52773
- 33784:53773
volumes:
- ~/iris.key:/usr/irissys/mgr/iris.key
- ./init.db/:/docker-entrypoint-initdb.d/
- ./:/home/irisowner/ml-on-fhir/
- ./FHIRSERVERX0001R:/usr/irissys/mgr/FHIRSERVERX0001R
- irissyslib:/usr/irissys/lib
- irissys:/usr/irissys
# working_dir: /home/irisowner/ml-on-fhir
synthea:
profiles:
- cli
build:
context: .
dockerfile: Dockerfile-synthea
command: [ "bash" ]
volumes:
- ./data/fhir:/output
superset:
env_file: .env
depends_on:
- iris
- redis
- db
build:
context: superset
ports:
- 8088:8088
restart: unless-stopped
db:
env_file: .env
image: postgres:14
restart: unless-stopped
volumes:
- db_home:/var/lib/postgresql/data
redis:
image: redis:7
restart: unless-stopped
volumes:
- redis:/data
notebook:
build:
context: notebook
dockerfile: dockerfile
ports:
- "8888:8888"
volumes:
- ./notebook/Notebooks:/Notebooks
command: "start-notebook.sh --NotebookApp.token='' --NotebookApp.password='' --notebook-dir=/Notebooks"
volumes:
irissys:
irissyslib:
redis:
db_home: