36 lines
1.0 KiB
YAML
36 lines
1.0 KiB
YAML
name: dicom-upp-registration
|
|
|
|
services:
|
|
dicom-upp-registration:
|
|
build:
|
|
context: .
|
|
container_name: dicom-upp-registration
|
|
restart: unless-stopped
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
PACS_IMAGE_DB_ROOT: /pacs-image-db
|
|
PACS_PROCESSED_ROOT: /pacs-image-db/PACS数据/DICOM数据/已处理_DICOM数据
|
|
REGISTRATION_CACHE_ROOT: /pacs-image-db/PACS数据/DICOM与UPP配准数据
|
|
REGISTRATION_RUNTIME_DIR: /app/runtime
|
|
ports:
|
|
- "8109:8109"
|
|
volumes:
|
|
- type: volume
|
|
source: pacs_image_db
|
|
target: /pacs-image-db
|
|
volume:
|
|
nocopy: true
|
|
- type: bind
|
|
source: /home/wkmgc/Desktop/PACS数据处理/DICOM_and_UPP配准/runtime
|
|
target: /app/runtime
|
|
read_only: false
|
|
|
|
volumes:
|
|
pacs_image_db:
|
|
driver: local
|
|
driver_opts:
|
|
type: cifs
|
|
device: //192.168.3.3/pacs影像数据库
|
|
o: username=${SMB_USERNAME},password=${SMB_PASSWORD},uid=1001,gid=1001,file_mode=0755,dir_mode=0755,iocharset=utf8,vers=3.0,soft,nounix,mapposix,noperm
|