Files
appstore/apps/headscale/0.28.0/docker-compose.yml
T
okxlin 2f118eb2b3 feat(headscale): add staged 0.29.2 upgrade
Add 0.28.0 as the required intermediate release, migrate removed 0.29 configuration safely, preserve policy behavior, and harden the container to the upstream permission model.
2026-07-23 12:07:05 +08:00

29 lines
613 B
YAML

services:
headscale:
container_name: ${CONTAINER_NAME}
restart: always
networks:
1panel-network:
ipv4_address: ${SUBNET}
ports:
- "${PANEL_APP_PORT_HTTP}:8080"
read_only: true
tmpfs:
- /var/run/headscale
volumes:
- "./data/config:/etc/headscale:ro"
- "./data/data:/var/lib/headscale"
healthcheck:
test: ["CMD", "headscale", "health"]
interval: 10s
timeout: 5s
retries: 5
command: ['serve']
image: headscale/headscale:v0.28.0
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true