mirror of
https://github.com/dqzboy/Docker-Proxy.git
synced 2026-01-12 16:25:42 +08:00
19 lines
481 B
YAML
19 lines
481 B
YAML
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
|