This tool packages the cloudflared command-line interface into a convenient Docker image, adding a simple and effective Web UI on top. It provides a straightforward way to manage remotely-controlled Cloudflare tunnels without needing to interact directly with the command line. Just deploy the container and access the web interface to get started.
The primary goal is to simplify tunnel management, making it accessible to a wider audience. Key features include:
docker run or docker-compose command for a run-and-forget configuration.To ensure proper functionality, the container must be run with network_mode set to host. The Web UI is accessible by default on port 14333.
services:
cloudflared-web:
image: wisdomsky/cloudflared-web:latest
container_name: cloudflared-web
restart: unless-stopped
ports:
- "7844:7844"
environment:
- TUNNEL_TOKEN=${TUNNEL_TOKEN}
volumes:
- ./cloudflared:/root/.cloudflaredTUNNEL_TOKEN=your_cloudflare_tunnel_token_hereAuto-fetched about 22 hours ago
Auto-fetched about 22 hours ago