feat: add cloudflared tunnel service to docker-compose

This commit is contained in:
Roncero Blanco, Edgar
2026-01-23 14:46:29 +01:00
parent c31d98fa29
commit 59d4215773
2 changed files with 9 additions and 0 deletions

2
.env.example Normal file
View File

@@ -0,0 +1,2 @@
# Put your Cloudflare Tunnel Token here
TUNNEL_TOKEN=your_token_here

View File

@@ -4,3 +4,10 @@ services:
ports:
- "8080:80"
restart: always
tunnel:
image: cloudflare/cloudflared:latest
restart: always
command: tunnel --no-autoupdate run
environment:
- TUNNEL_TOKEN=${TUNNEL_TOKEN}