forked from orthanc-server/orthanc-setup-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
62 lines (59 loc) · 1.59 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
version: "3"
services:
ldap:
image: dcm4che/slapd-dcm4chee:2.6.3-29.1
logging:
driver: json-file
options:
max-size: "10m"
env_file: docker-compose.env
volumes:
- /tmp/dcm4chee-arc/ldap:/var/lib/openldap/openldap-data
- /tmp/dcm4chee-arc/slapd.d:/etc/openldap/slapd.d
db:
image: dcm4che/postgres-dcm4chee:14.5-29
logging:
driver: json-file
options:
max-size: "10m"
env_file: docker-compose.env
volumes:
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
- /tmp/dcm4chee-arc/db:/var/lib/postgresql/data
arc:
image: dcm4che/dcm4chee-arc-psql:5.29.1
logging:
driver: json-file
options:
max-size: "10m"
ports:
- 8443:8443 # HTTP server
- 11112:11112 # DICOM server
env_file: docker-compose.env
environment:
WILDFLY_CHOWN: /opt/wildfly/standalone /storage
WILDFLY_WAIT_FOR: ldap:389 db:5432
depends_on:
- ldap
- db
volumes:
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
- /tmp/dcm4chee-arc/wildfly:/opt/wildfly/standalone
- /tmp/dcm4chee-arc/storage:/storage
security_opt:
- seccomp:unconfined
orthanc:
image: jodogne/orthanc-plugins:1.10.1
command: --verbose /run/secrets/ # Path to the configuration files (stored as secrets)
ports:
- 4242:4242 # DICOM server
- 8042:8042 # HTTP server
volumes:
- /tmp/orthanc-storage:/var/lib/orthanc/db
secrets:
- orthanc.json
secrets:
orthanc.json:
file: orthanc.json