mirror of
https://github.com/JamesTurland/JimsGarage.git
synced 2024-11-22 07:50:19 +00:00
18 lines
685 B
Text
18 lines
685 B
Text
services:
|
|
tailscale:
|
|
container_name: tailscale
|
|
image: tailscale/tailscale:stable
|
|
hostname: headtailscale
|
|
volumes:
|
|
- /home/ubuntu/docker/tailscale/data:/var/lib/tailscale
|
|
- /dev/net/tun:/dev/net/tun
|
|
network_mode: "host"
|
|
cap_add:
|
|
- NET_ADMIN
|
|
- NET_RAW
|
|
environment:
|
|
- TS_STATE_DIR=/var/lib/tailscale
|
|
- TS_EXTRA_ARGS=--login-server=https://headscale.jimsgarage.co.uk --advertise-exit-node --advertise-routes=192.168.0.0/16 --accept-dns=true
|
|
- TS_NO_LOGS_NO_SUPPORT=true
|
|
# - TS_AUTHKEY=e6f46b99f2ddsfsf3easdf125590e415db007 # generate this key inside your headscale server container
|
|
restart: unless-stopped
|