wiki/docs/docker-compose/tailscale.md
2024-05-04 17:03:07 +02:00

568 B

Portainer Stack:

---
version: "3.9"
services:
  tailscale:
    container_name: tailscale
    image: tailscale/tailscale
    command: tailscaled
    restart: ${RST_MODE-unless-stopped}
    network_mode: host
    privileged: ${PRIVILEGED-true}
    volumes:
      - /dev/net/tun:/dev/net/tun
      - /var/lib:/var/lib
    labels:
      - com.centurylinklabs.watchtower.enable=${AutoUpdate-true}

Then to login, from the terminal send:

docker exec tailscaled tailscale up

Environments:

PRIVILEGED=true
AutoUpdate=true
RST_MODE=unless-stopped