mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 10:56:23 +00:00
30 lines
618 B
Bash
30 lines
618 B
Bash
# =========================
|
|
# Headscale Configuration
|
|
# =========================
|
|
|
|
# Images
|
|
HEADSCALE_IMAGE=headscale/headscale:latest
|
|
HEADSCALE_UI_IMAGE=goodieshq/headscale-admin:0.26
|
|
|
|
# Restart policy
|
|
HEADSCALE_RESTART=unless-stopped
|
|
HEADSCALE_UI_RESTART=unless-stopped
|
|
|
|
# Paths
|
|
CONFIG_PATH=./config
|
|
DATA_PATH=./data
|
|
LOG_PATH=./logs
|
|
|
|
# Timezone
|
|
TZ=America/Vancouver
|
|
|
|
# Logging
|
|
HEADSCALE_LOG_LEVEL=info
|
|
|
|
# Domain (IMPORTANT)
|
|
HEADSCALE_DOMAIN=headscale.example.com
|
|
HEADSCALE_URL=https://headscale.example.com
|
|
|
|
# Ports (not exposed publicly, but useful for internal reference)
|
|
HEADSCALE_PORT=8080
|
|
HEADSCALE_UI_PORT=9090 |