https://github.com/shmick/docker-cloudflared
An ARM and X86 versions of the cloudfared container image as cloudflare only offers an x86 container
https://github.com/shmick/docker-cloudflared
cloudflare container docker tunnel
Last synced: 3 months ago
JSON representation
An ARM and X86 versions of the cloudfared container image as cloudflare only offers an x86 container
- Host: GitHub
- URL: https://github.com/shmick/docker-cloudflared
- Owner: shmick
- Created: 2021-09-18T13:32:25.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2026-03-19T20:22:34.000Z (4 months ago)
- Last Synced: 2026-03-20T11:29:59.397Z (4 months ago)
- Topics: cloudflare, container, docker, tunnel
- Language: Dockerfile
- Homepage:
- Size: 150 KB
- Stars: 12
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cloudflare Tunnel client
A lightweight container image of the [Cloudflare Tunnel client](https://github.com/cloudflare/cloudflared) with support for armv7, arm64 and amd64

## Setup with docker compose
### docker-compose.yml
```yaml
version: "3.8"
services:
cloudflare-tunnel:
container_name: cloudflare-tunnel
image: ghcr.io/shmick/docker-cloudflared
user: 1000:1000
network_mode: host
environment:
- TUNNEL_TOKEN=
- TUNNEL_METRICS=localhost:21000
command: tunnel run
restart: unless-stopped
```