# # 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