mirror of
https://github.com/CoolnsX/selfhost.git
synced 2025-12-20 15:25:18 +05:30
18 lines
352 B
YAML
18 lines
352 B
YAML
services:
|
|
headscale:
|
|
container_name: headscale
|
|
image: headscale/headscale:latest
|
|
command: headscale serve
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./config:/etc/headscale/
|
|
- ./data:/var/lib/headscale/
|
|
networks:
|
|
- nginx_proxy
|
|
ports:
|
|
- "3478:3478/udp"
|
|
|
|
networks:
|
|
nginx_proxy:
|
|
external: true
|