server-dotfiles/patrizio/docker-compose.yml
Davide Polonio 454bac9155 feat: configure Tailscale to run as daemon with DNS acceptance
Update docker-compose.yml to run tailscaled as a background daemon and execute
tailscale up with DNS acceptance flag. This replaces the previous env_file
configuration approach.
2026-04-06 19:17:01 +02:00

48 lines
1.1 KiB
YAML

services:
patrizio:
image: ghcr.io/polpetta/patrizio-bot:v0.2.0
network_mode: service:tailscale
restart: unless-stopped
command: -f /data/ serve
volumes:
- ./data:/data:rw
- ./patrizio.toml:/etc/patrizio/patrizio.toml:ro
depends_on:
tailscale:
condition: service_healthy
logging:
driver: "json-file"
options:
mode: "non-blocking"
max-size: "10m"
max-file: "3"
tailscale:
hostname: patrizio
image: tailscale/tailscale:latest
restart: unless-stopped
command: >
sh -c "tailscaled &
sleep 5 &&
tailscale up --accept-dns=true &&
wait"
healthcheck:
test: ["CMD-SHELL", "tailscale status"]
interval: 1s
timeout: 5s
retries: 60
volumes:
- /srv/docker/patrizio/tailscale:/var/lib
- /lib/modules:/lib/modules:ro
devices:
- /dev/net/tun:/dev/net/tun
cap_add:
- net_admin
- sys_module
- net_raw
logging:
driver: "json-file"
options:
mode: "non-blocking"
max-size: "10m"
max-file: "3"