Replies: 2 comments
-
How can I use Cloudflare tunnel? I can connect to the tunnel to the dokploy but I can't connect to another server that also has a tunnel. |
Beta Was this translation helpful? Give feedback.
-
What kind of feature do you lose? I'm not a big user of home assistant (only use it for basic things like lights & TVs), but this simple compose works fine for my use case: services:
homeassistant:
container_name: homeassistant
image: "ghcr.io/home-assistant/home-assistant:stable"
volumes:
# Don't forget to create the config in your host machines and tweak them accordingly
- /opt/homeassistant:/config
- /etc/localtime:/etc/localtime:ro
- /run/dbus:/run/dbus:ro
ports:
- 8123:8123
restart: unless-stopped
I left some pointers on Cloudflare Tunnel here: Not too difficult to set up, just need to be wary of the caveats. |
Beta Was this translation helpful? Give feedback.
-
Title says it all. It’s more than just a simple docker pull and run, and I’m not sure how I would setup traefik with it. I think you need to do it a certain way or you lose some features because you aren’t using their official HA OS. I also plan on using CF tunnels as it’s a home server, I don’t want to open anything.
Beta Was this translation helpful? Give feedback.
All reactions