mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 02:46:23 +00:00
complete all stack READMEs to the 9-section template
Existing content preserved and reordered to the canonical section order; missing sections generated from each stack's compose data (ports, volumes, env vars, image links). Fixes copy-paste errors in Dockhand sections (qbittorrent pointed at archivebox; invokeai/thunderbird said SERVICENAME) and persistant->persistent typos in gatus. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
+60
-22
@@ -18,31 +18,15 @@ Requires a valid config.yaml before first startup.
|
||||
* Internal Service Port: 8080 (not exposed publicly)
|
||||
* Environment Variable Notes
|
||||
|
||||
## Core Settings
|
||||
## Getting Started
|
||||
|
||||
These variables are used in the Docker Compose file (.env):
|
||||
1. Start the container: `docker compose up -d`
|
||||
2. Open http://localhost:PORT in your browser
|
||||
3. Follow the initial setup wizard to configure the application
|
||||
|
||||
```
|
||||
HEADSCALE_IMAGE – Docker image for Headscale server (default: headscale/headscale:latest)
|
||||
HEADSCALE_UI_IMAGE – Docker image for admin UI
|
||||
HEADSCALE_RESTART – Restart policy (default: unless-stopped)
|
||||
HEADSCALE_UI_RESTART – Restart policy for UI container
|
||||
## Environment Variable Notes
|
||||
|
||||
# Paths
|
||||
CONFIG_PATH – Location of configuration files (config.yaml)
|
||||
DATA_PATH – Persistent database storage (SQLite)
|
||||
LOG_PATH – Application logs
|
||||
|
||||
# System
|
||||
TZ – Timezone (e.g. America/Vancouver)
|
||||
HEADSCALE_LOG_LEVEL – Logging verbosity (info, debug, etc.)
|
||||
Domain Configuration
|
||||
HEADSCALE_DOMAIN – Public-facing domain used via reverse proxy
|
||||
Example: headscale.4lt.ca
|
||||
|
||||
HEADSCALE_URL – Full URL used by Headscale clients
|
||||
Must match your reverse proxy domain:
|
||||
```
|
||||
HEADSCALE_LOG_LEVEL – default: info
|
||||
|
||||
## Volume Notes
|
||||
|
||||
@@ -103,3 +87,57 @@ Ensure config.yaml exists in:
|
||||
./config/headscale/config/config.yaml
|
||||
Deploy stack
|
||||
Configure reverse proxy in Nginx Proxy Manager
|
||||
|
||||
## Docker Run
|
||||
|
||||
```bash
|
||||
docker run -d \
|
||||
--name headscale \
|
||||
-v /data/headscale/config:/etc/headscale \
|
||||
-v /data/headscale/data:/var/lib/headscale \
|
||||
-v /data/headscale/logs:/var/log/headscale \
|
||||
headscale/headscale:latest
|
||||
```
|
||||
|
||||
See compose.yaml for the full set of environment variables.
|
||||
|
||||
## Additional Notes / Gotchas
|
||||
|
||||
Nothing specific to this stack so far.
|
||||
|
||||
## Dockhand Stack, Deploy from Git
|
||||
|
||||
Cookbooks Repository
|
||||
stackname: headscale_dev
|
||||
Compose file path: headscale_dev/compose.yaml
|
||||
Additional env file (optional): headscale_dev/sample.env
|
||||
|
||||
Then "Load" headscale_dev/sample.env into the Environmental variables in dockhand
|
||||
|
||||
Create the Stack
|
||||
|
||||
## Core Settings
|
||||
|
||||
These variables are used in the Docker Compose file (.env):
|
||||
|
||||
```
|
||||
HEADSCALE_IMAGE – Docker image for Headscale server (default: headscale/headscale:latest)
|
||||
HEADSCALE_UI_IMAGE – Docker image for admin UI
|
||||
HEADSCALE_RESTART – Restart policy (default: unless-stopped)
|
||||
HEADSCALE_UI_RESTART – Restart policy for UI container
|
||||
|
||||
# Paths
|
||||
CONFIG_PATH – Location of configuration files (config.yaml)
|
||||
DATA_PATH – Persistent database storage (SQLite)
|
||||
LOG_PATH – Application logs
|
||||
|
||||
# System
|
||||
TZ – Timezone (e.g. America/Vancouver)
|
||||
HEADSCALE_LOG_LEVEL – Logging verbosity (info, debug, etc.)
|
||||
Domain Configuration
|
||||
HEADSCALE_DOMAIN – Public-facing domain used via reverse proxy
|
||||
Example: headscale.4lt.ca
|
||||
|
||||
HEADSCALE_URL – Full URL used by Headscale clients
|
||||
Must match your reverse proxy domain:
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user