33 lines
593 B
YAML
33 lines
593 B
YAML
version: '3.5'
|
|
|
|
services:
|
|
|
|
orthanc:
|
|
container_name: orthanc
|
|
image: jodogne/orthanc-plugins
|
|
volumes:
|
|
- ../sampledata:/sampledata
|
|
ports:
|
|
- "4242:4242"
|
|
- "8042:8042"
|
|
restart: always
|
|
viewer:
|
|
container_name: ohif-viewer
|
|
build:
|
|
context: ../
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- '80:80'
|
|
depends_on:
|
|
- orthanc
|
|
environment:
|
|
- NODE_ENV=production
|
|
restart: always
|
|
proxy:
|
|
image: nginx
|
|
restart: always
|
|
ports:
|
|
- 8899:80
|
|
volumes:
|
|
- ./nginx-proxy/conf/nginx.conf:/etc/nginx/nginx.conf:ro
|