docker-orthanc/.env

23 lines
523 B
Bash
Raw Normal View History

2023-04-26 10:58:17 +08:00
#
# Orthanc 相关
#
# 挂载 orthanc.json 配置文件
ORTHANC_CONFIG=./config/orthanc.json
# 挂载 到本地的 dicom 文件存储,需要关闭数据库插件存储,在 orthanc.json 配置 PostgreSQL->EnableStorage 设为 false
ORTHANC_DB_MNT=./orthanc_db
#
# PostgreSQL 配置
#
# 数据库文件 挂在到本地位置
POSTGRES_DATA_MNT=./pg_data/data
# 数据库文件 在容器里的路径
PGDATA=/var/lib/postgresql/data
POSTGRES_DB=orthanc
POSTGRES_PORT=5432
POSTGRES_USER=orthanc
POSTGRES_PASSWORD=orthanc
2023-08-21 13:45:07 +08:00