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

20 lines
415 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
ports:
- "${REVIEW_APP_PORT:-8090}:8000"
volumes:
- ..:/workspace
restart: unless-stopped