Hi everyone,
Still very new to OMV, but have learned much thanks to this forum. I have Tailscale up and running, but now I'm trying to use it as an exit node. After scouring the forums (here, Tailscale, and Reddit), still no success.
Any thoughts? Do I need to advertise routes as well?
Code
---
services:
tailscale:
image: tailscale/tailscale:latest
privileged: true
hostname: rp_tailscale
network_mode: "host"
container_name: tailscale
environment:
- PUID=${PUID}
- PGID=${PGID}
- TS_EXTRA_ARGS=--advertise-exit-node
volumes:
- ./tailscale/state:/var/lib/tailscale
- /dev/net/tun:/dev/net/tun # Required for tailscale to work
- /var/run/dbus/system_bus_socket:/var/run/dbus/system_bus_socket
cap_add: # Required for tailscale to work
- net_admin
- sys_module
command: tailscaled
restart: unless-stopped
Display More