27 lines
674 B
YAML
27 lines
674 B
YAML
version: '3.5'
|
|
|
|
services:
|
|
proxy:
|
|
image: nginx:1.15-alpine
|
|
ports:
|
|
- 8899:80
|
|
volumes:
|
|
- ./config/nginx.conf:/etc/nginx/nginx.conf:ro
|
|
restart: unless-stopped
|
|
|
|
# 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' # DICOM
|
|
# - '8042:8042' # Web
|
|
restart: unless-stopped
|