Files
deploy.stack/rustfs/stack.yml
cnphpbb 7bd15bd92f docs: 更新配置文件和注释
在stack.yml中添加运行命令注释
在env.cfg中新增CADDY_CONFIG_ROOT配置项
更新txc-webout.yml中的镜像和配置路径
2025-09-15 21:41:55 +08:00

23 lines
703 B
YAML

# RUN:: docker compose -p rustfs --env-file ./rustfs/env.cfg -f ./rustfs/stack.yml up -d
services:
rustfs:
image: ${IMAGE_TAG}
environment:
- RUSTFS_SERVER_DOMAINS=${RUSTFS_SERVER_DOMAINS}
- RUSTFS_CONSOLE_ENABLE=${RUSTFS_CONSOLE_ENABLE}
- RUSTFS_SECRET_KEY=${RUSTFS_SECRET_KEY}
- RUSTFS_ACCESS_KEY=${RUSTFS_ACCESS_KEY}
volumes:
- ${Volumes_Path}/data:/data
ports:
- '50900:7000'
container_name: rustfs_container
restart: always
command: >
--address :7000
--console-enable
--server-domains ${RUSTFS_SERVER_DOMAINS}
--access-key ${RUSTFS_ACCESS_KEY}
--secret-key ${RUSTFS_SECRET_KEY}
/data