docker clash安装配置
docker配置 ~/.config/docker-compose.yml
version: '3'
services:
clash:
image: ghcr.io/dreamacro/clash
restart: always
volumes:
- ~/.config/clash/config.yaml:/root/.config/clash/config.yaml:ro
ports:
- "7890:7890"
- "7891:7891"
- "9090:9090" # The External Controller (RESTful API)
network_mode: "bridge"
restart: always
clash-ui:
image: haishanh/yacd
container_name: clash-ui
ports:
- 1234:80
network_mode: "bridge"
restart: always
...约 232 字小于 1 分钟
