-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
58 lines (53 loc) · 1.72 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
#if needed to map the orthancPACS to a different hard disk device (after mounting it in path)
# volumes: ["/home/petctviewer/orthanc:/var/lib/orthanc/db:Z"]
services:
redis:
image: redis:alpine
ports: ["6379:6379"]
postgres:
image: postgres:13.1
ports: ["5432:5432"]
environment:
POSTGRES_DB: "gaelo-flow"
POSTGRES_HOST_AUTH_METHOD: "trust"
volumes:
- postgres:/var/lib/postgresql/data
restart: unless-stopped
orthanc:
image: orthancteam/orthanc:24.4.0
restart: unless-stopped
ports: ["8042:8042"]
volumes: ["orthanc:/var/lib/orthanc/db:Z"]
environment:
NEURO_PLUGIN_ENABLED: "true"
ORTHANC__NAME: "GaelO Flow"
ORTHANC__DICOM_SERVER_ENABLED: "true"
ORTHANC__DICOM_MODALITIES_IN_DATABASE: "true"
ORTHANC__DICOM_ALWAYS_ALLOW_FIND: "true"
ORTHANC__DICOM_ALWAYS_ALLOW_MOVE: "true"
ORTHANC__DATABASE_SERVER_IDENTIFIER: "Orthanc1"
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__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"
pgadmin:
image: dpage/pgadmin4
restart: always
environment:
PGADMIN_DEFAULT_EMAIL: [email protected]
PGADMIN_DEFAULT_PASSWORD: root
ports:
- "5050:80"
volumes:
orthanc:
gaelo-flow:
postgres: