Files
doc-uploader/file-upload-site/docker-compose.yml
2026-06-12 19:46:35 +08:00

18 lines
543 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
services:
file-upload:
build: .
container_name: file-upload-site
restart: always
ports:
- "7001:5000"
env_file:
- .env
environment:
# 强制覆盖,确保容器内写入路径与 volume 挂载点一致
- UPLOAD_ROOT=/app/uploads
volumes:
# 映射 NAS 目录到容器内(按实际 NAS 挂载路径修改冒号左侧)
- /volume1/文字稿:/app/uploads
# FRP 文件目录(按实际路径修改,目录下放 frpc 和 frpc.toml
- /volume1/docker/frp:/frp:ro