This repo, upon official release, automatically builds the a Tailscale Docker image from the official tailscale/tailscale repository. Automation is done via GitHub workflows in this repo.
docker pull shaynesweeney/tailscale
Proceed with Caution [source]
############################################################################ # # WARNING: Tailscale is not yet officially supported in Docker, # Kubernetes, etc. # # It might work, but we don't regularly test it, and it's not as polished as # our currently supported platforms. This is provided for people who know # how Tailscale works and what they're doing. # # Our tracking bug for officially support container use cases is: # https://github.com/tailscale/tailscale/issues/504 # # Also, see the various bugs tagged "containers": # https://github.com/tailscale/tailscale/labels/containers # ############################################################################
Usage [source]
# This Dockerfile includes all the tailscale binaries. # # To build the Dockerfile: # # $ docker build -t tailscale:tailscale . # # To run the tailscaled agent: # # $ docker run -d --name=tailscaled -v /var/lib:/var/lib -v /dev/net/tun:/dev/net/tun --network=host --privileged tailscale:tailscale tailscaled # # To then log in: # # $ docker exec tailscaled tailscale up # # To see status: # # $ docker exec tailscaled tailscale status