Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 570 Bytes

README.md

File metadata and controls

21 lines (18 loc) · 570 Bytes

Cloudflare Tunnel client

A lightweight container image of the Cloudflare Tunnel client with support for armv7, arm64 and amd64

Setup with docker compose

docker-compose.yml

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=<long tunnel token string>
      - TUNNEL_METRICS=localhost:21000
    command: tunnel run
    restart: unless-stopped