-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
38 lines (36 loc) · 904 Bytes
/
docker-compose.yml
File metadata and controls
38 lines (36 loc) · 904 Bytes
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
services:
plugins-builder:
build:
context: plugins-build
dockerfile: Dockerfile
args:
REPO_URL: "https://github.com/dicoogle/dicoogle-plugins.git"
volumes:
- ./plugins:/output
dicoogle:
build:
context: ../dicoogle
dockerfile: Dockerfile
image: dicoogle/dicoogle-core:3.1.0
container_name: dicoogle
restart: unless-stopped
environment:
JVM_XARGS: "-XX:+UseG1GC -Xmx2G -Xms2G -Ddicoogle.taskManager.nThreads=4"
ports:
- 8082:8080
- 1045:1045
- 6666:6666
healthcheck:
test: "curl -f http://localhost:8080/management/dicom/storage || exit 1"
interval: 15s
timeout: 10s
retries: 3
volumes:
- ./index:/root/index
- ./storage:/opt/pacs
- ./conf:/root/conf
- ./logs:/root/logs
- ./plugins:/root/Plugins
networks:
default:
driver: bridge