headplane/compose.yaml

24 lines
632 B
YAML
Raw Normal View History

# THIS IS A DEVELOPER CONFIGURATION FILE
# IT IS NOT AN EXAMPLE OF SOMETHING YOU DEPLOY
# I ONLY USE IT FOR DEVELOPING HEADPLANE
2024-03-28 14:58:00 -04:00
networks:
2025-02-19 10:37:10 -05:00
headplane-dev:
name: "headplane-dev"
driver: "bridge"
2024-03-28 14:58:00 -04:00
services:
2025-02-19 10:37:10 -05:00
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"