Files
Docker-Proxy/hubcmdui/docker-compose.yaml
Berny Linville 854729f00d fix: 修复HubCMD-UI的docker-compose.yaml环境配置错误
- 注释掉空的environment配置节,解决"environment must be a mapping"验证错误
- 修复安装脚本中HubCMD-UI服务启动失败的问题
2025-07-18 14:17:31 +08:00

19 lines
481 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:
## HubCMD UI
hubcmd-ui:
container_name: hubcmd-ui
image: dqzboy/hubcmd-ui:latest
restart: always
# environment:
# HTTP代理配置可选
#- HTTP_PROXY=http://proxy.example.com:8080
#- HTTPS_PROXY=https://proxy.example.com:8080
#- NO_PROXY=localhost,127.0.0.1,.local
volumes:
- /var/run/docker.sock:/var/run/docker.sock
# SQLite数据库文件
- ./data:/app/data
ports:
- 30080:3000