Files
HIS/患者列表处理/人工复核网页端/docker-compose.yml

22 lines
610 B
YAML

name: his-list-review
services:
manual-review:
build:
context: .
image: his-list-manual-review:latest
container_name: his-list-manual-review
env_file:
- ../.env
environment:
WORKSPACE_ROOT: /workspace
REVIEW_APP_HOST: 0.0.0.0
REVIEW_APP_PORT: 8000
REVIEW_ALLOWED_PATH_ROOTS: ${HIS_LIST_DATA_ROOT:-/data/his-list-images}
ports:
- "${REVIEW_APP_PORT:-8090}:8000"
volumes:
- ..:/workspace
- ${HIS_LIST_DATA_ROOT:-../待处理-患者目录图片集群}:${HIS_LIST_DATA_ROOT:-/data/his-list-images}:ro
restart: unless-stopped