-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathdocker-compose.yml
61 lines (55 loc) · 1.82 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: "2"
services:
orthanc:
image: orthancteam/orthanc
ports: ["8042:8042"]
volumes: ["orthanc-storage:/var/lib/orthanc/db"]
environment:
VERBOSE_STARTUP: "true"
#VERBOSE_ENABLED: "true"
# you must enable the StoneViewer and the DicomWeb plugins
STONE_WEB_VIEWER_PLUGIN_ENABLED: "true"
DICOM_WEB_PLUGIN_ENABLED: "true"
ORTHANC__DICOM_WEB__SERIES_METADATA: "Full"
ORTHANC__DICOM_WEB__STUDIES_METADATA: "Full"
ORTHANC__DICOM_WEB__METADATA_WORKER_THREADS_COUNT : "4"
# if you want to work in "MainDicomTags" mode for the metadata, you should define
# these extra main dicomtags
# ORTHANC__EXTRA_MAIN_DICOM_TAGS: |
# {
# "Instance" : [
# "Rows",
# "Columns",
# "ImageType",
# "SOPClassUID",
# "ContentDate",
# "ContentTime",
# "FrameOfReferenceUID",
# "PixelSpacing",
# "SpecificCharacterSet",
# "BitsAllocated",
# "BitsStored",
# "RescaleSlope",
# "RescaleIntercept",
# "SliceThickness",
# "WindowCenter",
# "WindowWidth",
# "PhotometricInterpretation",
# "PixelRepresentation"
# ],
# "Series" : [
# "TimezoneOffsetFromUTC",
# "PerformedProcedureStepStartDate",
# "PerformedProcedureStepStartTime",
# "RequestAttributesSequence"
# ],
# "Study": [
# "TimezoneOffsetFromUTC"
# ],
# "Patient": []
# }
# StoneViewer configurations
ORTHANC__STONE_WEB_VIEWER__DATE_FORMAT: "DD/MM/YYYY"
ORTHANC__AUTHENTICATION_ENABLED: "false"
volumes:
orthanc-storage: