Clash Premium + Clash ui + Preloaded Configuration
5.6K
docker run -d \
--name clash \
--restart unless-stopped \
-p 7890:7890 \
-p 3128:3128 \
-p 7891:7891 \
-p 9090:9090 \
-p 53:53/tcp \
-p 53:53/udp \
superxiao666/clash:latest
docker run -d \
--name clash \
--restart unless-stopped \
--cap-add NET_ADMIN \
--device /dev/net/tun:/dev/net/tun \
-p 7890:7890 \
-p 3128:3128 \
-p 7891:7891 \
-p 9090:9090 \
-p 53:53/tcp \
-p 53:53/udp \
superxiao666/clash:latest
docker run -d \
--name clash \
--restart unless-stopped \
--network host \
--cap-add NET_ADMIN \
--device /dev/net/tun:/dev/net/tun \
-v /opt/clash:/etc/clash \
superxiao666/clash:latest
services:
clash:
image: superxiao666/clash:latest
container_name: clash
restart: unless-stopped
ports:
- "7890:7890"
- "7891:7891"
- "3128:3128"
- "9090:9090"
- "53:53/tcp"
- "53:53/udp"
volumes:
- ./clash:/etc/clash
services:
clash:
image: superxiao666/clash:latest
container_name: clash
restart: unless-stopped
cap_add:
- NET_ADMIN
devices:
- /dev/net/tun:/dev/net/tun
ports:
- "7890:7890"
- "3128:3128"
- "7891:7891"
- "9090:9090"
- "53:53/tcp"
- "53:53/udp"
volumes:
- ./clash:/etc/clash
Content type
Image
Digest
sha256:30a838659…
Size
44.5 MB
Last updated
4 months ago
docker pull superxiao666/clash