Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 1.19 KB

Tailscale for Docker Containers.md

File metadata and controls

42 lines (30 loc) · 1.19 KB

The basic idea is to create a tailscale service container, that runs along side the main app container. You then set the main app container to use the tailscale container for networking.

I followed this guide: Using Tailscale with Docker

So first you add the tailscale service to the docker-compose.yml file:

services:

tailscale:
hostname: CHANGEME # This will become the tailscale device name
image: tailscale/tailscale

volumes:

- ./tailscale:/var/lib/tailscale # State data will be stored in this directory"/dev/net/tun:/dev/net/tun" # Required for tailscale to work

cap_add: # Required for tailscale to work

- net_admin
- sys_module

command: tailscaled

Then change the main app networking to use the tailscale service container:

  audiobookshelf:
    image: ghcr.io/advplyr/audiobookshelf:latest
    network_mode: service:tailscale
    volumes:
      - /cargo/Audiobooks:/audiobooks
      - /cargo/Podcasts:/podcasts
      - ./config:/config
      - ./metadata>:/metadata

Once the containers are up, you exec into the tailscale container and authenticate the tailscale session:

docker compose exec tailscale tailscale up