clash
Less than 1 minute
clash
server
- mkdir to store config file
mkdir -p clash
- remember to put your own config.yaml into the
$(pwd)/clash/
directory
- start server
podman run --rm \ --name clash \ -p 7890:7890 \ -p 9090:9090 \ -v $(pwd)/clash:/root/.config/clash \ -d docker.io/dreamacro/clash:v1.18.0
- start clash dashboard(pure static web)
podman run --rm \ --name clash-dashboard \ -p 8080:80 \ -d docker.io/haishanh/yacd:master
- open browser and visit
http://localhost:8080
- proxy settings with command line
export https_proxy=http://127.0.0.1:7890 http_proxy=http://127.0.0.1:7890 all_proxy=socks5://127.0.0.1:7890
references
- https://github.com/ben-wangz/clash
- https://github.com/ben-wangz/yacd