“I want to build a PACS platform. using Orthanc as the backend Dicom engine (not visible to users) and a customizable OHIF viewer (what users see only). My goal is to run this in Docker and host on a cloud server. I need a minimal, working setup on Windows that supports DICOMweb and allows login. What’s the simplest way to achieve this. PLEASE I NEED HELP URGENTLY ![]()
I had gone through this documentation but its just for local installation, I need a docker version that i can host on a cloud server. thanks for response I appreciate
Hello @Taiwo - something like this docker-compose.yml on a cloud server works for us.
services:
nginx:
container_name: nginx
image: nginx
depends_on:
- orthanc
- viewer
ports: - “443:443”
viewer:
container_name: viewer
image: ohif/app
depends_on: [orthanc]
volumes:
- ‘${VIEWER_CONFIG}:/usr/share/nginx/html/app-config.js:ro’
orthanc:
container_name: orthanc
image: orthancteam/orthanc
environment:
DICOM_WEB_PLUGIN_ENABLED: “true”