16 lines
440 B
YAML
16 lines
440 B
YAML
# LINK: https://hub.docker.com/r/jodogne/orthanc-plugins/
|
|
# TODO: Update to use Postgres
|
|
# https://github.com/mrts/docker-postgresql-multiple-databases
|
|
orthanc:
|
|
image: jodogne/orthanc-plugins:1.5.6
|
|
hostname: orthanc
|
|
volumes:
|
|
# Config
|
|
- ./config/orthanc.json:/etc/orthanc/orthanc.json:ro
|
|
# Persist data
|
|
- ./volumes/orthanc-db/:/var/lib/orthanc/db/
|
|
ports:
|
|
- '4242:4242'
|
|
- '8042:8042'
|
|
restart: unless-stopped
|