42 lines
864 B
Bash
42 lines
864 B
Bash
# docker-compose environment file
|
||
#
|
||
# When you set the same environment variable in multiple files,
|
||
# here’s the priority used by Compose to choose which value to use:
|
||
#
|
||
# 1. Compose file
|
||
# 2. Shell environment variables
|
||
# 3. Environment file
|
||
# 4. Dockerfile
|
||
# 5. Variable is not defined
|
||
|
||
#
|
||
# Nginx configuration
|
||
#
|
||
NGINX_DEFAULT_CONF=./config/nginx_ohif.conf
|
||
|
||
#
|
||
# OHIF Viewer
|
||
#
|
||
VIEWER_CONFIG=./config/ohif.js
|
||
|
||
#
|
||
# Orthanc core with plugins
|
||
#
|
||
ORTHANC_CONFIG=./config/orthanc.json
|
||
ORTHANC_OHIF=./config/orthanc_ohif.js
|
||
ORTHANC_DB_MNT=./volumes/orthanc_db
|
||
ORTHANC_LOG=./volumes/orthanc_logs
|
||
|
||
#
|
||
# PostgreSQL database - default values should not be used in production
|
||
#
|
||
POSTGRES_DATA_MNT=./volumes/pg_data
|
||
PGDATA=/var/lib/postgresql/data
|
||
|
||
POSTGRES_DB=orthanc
|
||
POSTGRES_PORT=5432
|
||
POSTGRES_USER=postgres
|
||
POSTGRES_PASSWORD=password
|
||
|
||
TZ="Asia/Dhaka"
|
||
PGTZ="Asia/Dhaka" |