mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-24 08:01:04 +00:00
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.
29 lines
613 B
YAML
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
|