refactored

This commit is contained in:
Masroor Ehsan 2025-01-27 10:32:30 +06:00
parent a982063eaa
commit 1317849541
2 changed files with 5 additions and 5 deletions

8
.env
View File

@ -12,19 +12,19 @@
# #
# Nginx configuration # Nginx configuration
# #
NGINX_DEFAULT_CONF=./config/nginx_ohif.conf NGINX_DEFAULT_CONF=./config/ohif/nginx.conf
# #
# OHIF Viewer # OHIF Viewer
# #
OHIF_CONFIG=./config/ohif.js OHIF_CONFIG=./config/ohif/ohif.js
OHIF_LOGO=./config/logo.png OHIF_LOGO=./config/ohif/logo.png
# #
# Orthanc core with plugins # Orthanc core with plugins
# #
ORTHANC_CONFIG=./config/orthanc.json ORTHANC_CONFIG=./config/orthanc.json
ORTHANC_OHIF=./config/orthanc_ohif.js ORTHANC_OHIF=./config/ohif/ohif.js
ORTHANC_DB_MNT=./volumes/orthanc_db ORTHANC_DB_MNT=./volumes/orthanc_db
ORTHANC_LOG=./volumes/orthanc_logs ORTHANC_LOG=./volumes/orthanc_logs

View File

@ -52,7 +52,7 @@ services:
volumes: volumes:
- ${ORTHANC_CONFIG:-./config/orthanc.json}:/etc/orthanc/orthanc.json:ro - ${ORTHANC_CONFIG:-./config/orthanc.json}:/etc/orthanc/orthanc.json:ro
- ${ORTHANC_DB_MNT:-./volumes/orthanc_db}:/var/lib/orthanc/db - ${ORTHANC_DB_MNT:-./volumes/orthanc_db}:/var/lib/orthanc/db
- ${ORTHANC_OHIF:-./config/orthanc_ohif.js}:/usr/local/share/orthanc/ohif.js:ro - ${ORTHANC_OHIF:-./config/ohif/ohif.js}:/usr/local/share/orthanc/ohif.js:ro
- ${ORTHANC_LOG:-./volumes/orthanc_logs}:/etc/orthanc/logs - ${ORTHANC_LOG:-./volumes/orthanc_logs}:/etc/orthanc/logs
environment: environment:
VERBOSE_ENABLED: "true" VERBOSE_ENABLED: "true"