Run Tailscale (agent/relay) in a container
docker run -d \
-e TAILSCALE_AUTH_KEY=<your_auth_key> \
--net host \
--privileged \
mvisonneau/tailscale
# Add the helm repository to your local client
~$ helm repo add mvisonneau https://charts.visonneau.fr
# Install the relay
~$ helm install \
tailscale-relay \
mvisonneau/tailscale-relay \
--set config.authKey=<your_auth_key>
More information on how to use the chart here.
inspired by @hamishforbes gist