-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
74 lines (67 loc) · 2.33 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
services:
gaelo-flow:
container_name: gaelo-flow
image: ghcr.io/pixilib/gaelo-flow-backend
depends_on: [redis, flow-db]
ports: ["3000:3000"]
environment:
APP_URL : "http://localhost"
ORTHANC_ADDRESS : "http://orthanc-flow:8042"
ORTHANC_USERNAME: "orthanc"
ORTHANC_PASSWORD: "orthanc"
TYPEORM_TYPE : "postgres"
TYPEORM_HOST : "flow-db"
TYPEORM_PORT : 5432
TYPEORM_USERNAME : "postgres"
TYPEORM_PASSWORD : "postgres"
TYPEORM_DATABASE : "gaelo-flow"
REDIS_ADDRESS : "redis"
REDIS_PORT : 6379
API_PORT : 3000
JWT_SECRET : "verySecretKey"
MAIL_HOST: ""
MAIL_USER: ""
MAIL_PASSWORD: ""
MAIL_FROM: ""
MAIL_ENCRYPTION: ""
redis:
image: redis:alpine
ports: ["6379:6379"]
flow-db:
container_name: flow-db
image: postgres:13.1
ports: ["5432:5432"]
environment:
POSTGRES_DB : "gaelo-flow"
POSTGRES_HOST_AUTH_METHOD: "trust"
volumes:
- postgres-flow:/var/lib/postgresql/data
restart: unless-stopped
orthanc-flow:
image: osimis/orthanc:23.9.0
container_name: orthanc-flow
restart: unless-stopped
ports: ["8042:8042"]
volumes: ["orthanc-flow:/var/lib/orthanc/db:Z"]
environment:
NEURO_PLUGIN_ENABLED: "true"
ORTHANC__NAME: "gaelo-flow-orthanc"
ORTHANC__DICOM_SERVER_ENABLED: "true"
ORTHANC__DICOM_MODALITIES_IN_DATABASE: "true"
ORTHANC__ORTHANC_PEERS_IN_DATABASE: "true"
DICOM_WEB_PLUGIN_ENABLED: "true"
OSIMIS_WEB_VIEWER1_PLUGIN_ENABLED: "true"
PYTHON_PLUGIN_ENABLED: "true"
TRANSFERS_PLUGIN_ENABLED: "true"
WORKLISTS_PLUGIN_ENABLED: "true"
ORTHANC__OVERWRITE_INSTANCES: "true"
ORTHANC__DICOM_WEB__ENABLE: "true"
ORTHANC__DICOM_WEB__ROOT: "/dicom-web/"
ORTHANC__DICOM_WEB__ENABLEWADO: "true"
ORTHANC__DICOM_WEB__WADOROOT: "/wado"
ORTHANC__DICOM_WEB__SSL: "true"
ORTHANC__DICOM_WEB__STUDIES_METADATA: "MainDicomTags"
ORTHANC__DICOM_WEB__SERIES_METADATA: "Full"
volumes:
orthanc-flow:
postgres-flow: