headplane/compose.yaml
2025-02-19 10:37:10 -05:00

24 lines
632 B
YAML

# THIS IS A DEVELOPER CONFIGURATION FILE
# IT IS NOT AN EXAMPLE OF SOMETHING YOU DEPLOY
# I ONLY USE IT FOR DEVELOPING HEADPLANE
networks:
headplane-dev:
name: "headplane-dev"
driver: "bridge"
services:
headscale:
image: "headscale/headscale:0.25.0"
container_name: "headscale"
restart: "unless-stopped"
command: "serve"
networks:
- "headplane-dev"
volumes:
- "./.cache/headscale:/var/lib/headscale"
- "./test:/etc/headscale"
ports:
- "8080:8080"
environment:
TZ: "America/New_York"