-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
58 lines (50 loc) · 1.76 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
version: "3.8"
services:
orthanc:
image: orthancteam/orthanc:24.3.4
restart: unless-stopped
depends_on:
- postgres
ports:
- 8042:8042
environment:
ORTHANC__NAME: "Orthanc PACS"
VERBOSE_ENABLED: "true"
VERBOSE_STARTUP: "true"
STONE_WEB_VIEWER_PLUGIN_ENABLED: "true"
ORTHANC__STONE_WEB_VIEWER__SHOW_INFO_PANEL_AT_STARTUP: "Never"
ORTHANC__ORTHANC_EXPLORER_2__UI_OPTIONS__STUDY_LIST_SEARCH_MODE: "search-button"
ORTHANC__ORTHANC_EXPLORER_2__UI_OPTIONS__STUDY_LIST_EMPTY_IF_NO_SEARCH: "true"
ORTHANC__ORTHANC_EXPLORER_2__IS_DEFAULT_ORTHANC_UI: "true"
ORTHANC__ORTHANC_EXPLORER_2__DATE_FORMAT: "dd.MM.yyyy"
ORTHANC__POSTGRESQL__HOST: "postgres"
ORTHANC__POSTGRESQL__ENABLE_INDEX: "true"
ORTHANC__POSTGRESQL__ENABLE_STORAGE: "false"
DICOM_WEB_PLUGIN_ENABLED: "true"
ORTHANC__AUTHENTICATION_ENABLED: "true"
ORTHANC__DICOM_MODALITIES: |
{
"test": ["test", "dicom-tls-relay", 50000]
}
volumes: ["orthanc-data:/var/lib/orthanc/db:Z"]
postgres:
image: postgres:15
restart: unless-stopped
volumes: ["orthanc-index:/var/lib/postgresql/data:Z"]
environment:
POSTGRES_HOST_AUTH_METHOD: "trust"
prometheus:
build: prometheus
ports:
- 9090:9090
volumes:
- prometheus_data:/prometheus
restart: unless-stopped
environment:
DEPLOYMENT_NAME: "test-name3"
env_file:
- ./prometheus.env
volumes:
prometheus_data:
orthanc-data:
orthanc-index: