Implement cloudflare tunnel

This commit is contained in:
Marko Korhonen 2025-06-07 00:20:49 -05:00
parent 11b5a0347b
commit dac15275f4
6 changed files with 191 additions and 68 deletions

View file

@ -0,0 +1,19 @@
services:
cloudflared:
image: cloudflare/cloudflared
container_name: cloudflared
restart: unless-stopped
networks:
- proxy
volumes:
- /etc/localtime:/etc/localtime:ro
entrypoint:
command: tunnel --no-autoupdate run
env_file:
- .env
extra_hosts:
- 'host.docker.internal:host-gateway'
networks:
proxy:
external: true