2019-05-10 06:09:04 +02:00
|
|
|
version: '3.5'
|
|
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
orthanc:
|
2023-04-20 18:39:37 +02:00
|
|
|
image: jodogne/orthanc-plugins:1.11.0
|
2019-05-10 06:09:04 +02:00
|
|
|
hostname: orthanc
|
|
|
|
|
volumes:
|
|
|
|
|
# Config
|
|
|
|
|
- ./config/orthanc.json:/etc/orthanc/orthanc.json:ro
|
|
|
|
|
# Persist data
|
|
|
|
|
- ./volumes/orthanc-db/:/var/lib/orthanc/db/
|
2019-06-05 16:11:13 +02:00
|
|
|
ports:
|
|
|
|
|
- '4242:4242' # DICOM
|
|
|
|
|
- '8042:8042' # Web
|
2019-05-10 06:09:04 +02:00
|
|
|
restart: unless-stopped
|
2023-02-06 03:03:19 +01:00
|
|
|
nginx:
|
|
|
|
|
image: nginx:latest
|
|
|
|
|
volumes:
|
|
|
|
|
- ./config/nginx.conf:/etc/nginx/nginx.conf
|
|
|
|
|
ports:
|
|
|
|
|
- '80:80' #ngnix proxy
|
|
|
|
|
depends_on:
|
|
|
|
|
- orthanc
|