Sanitized snapshot of the live srvno.de stack: Caddy + Ollama (with preseed) + ComfyUI + Open WebUI + Anubis stub. Real hostnames, secrets, and bcrypt hash replaced with placeholders so the dir is safe to commit. Caddyfile updated to point at comfyui:8188 (the source file pointed at the now-removed forge service). Dropped FIGMENT_/FORGE_/SEGMENT_IMAGE_TAG from the env example. Harmonised the init-models.sh mount path between ollama and model-init services. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
17 lines
738 B
Bash
17 lines
738 B
Bash
# Copy to .env and fill in. docker compose picks .env up automatically.
|
|
# Never commit the populated .env — it's in .gitignore at repo root.
|
|
|
|
# Cookie-signing key for Open WebUI sessions. Generate once with:
|
|
# openssl rand -hex 32
|
|
# Must stay stable across restarts — rotating it logs every user out.
|
|
WEBUI_SECRET_KEY=replace-with-32-byte-hex
|
|
|
|
# Ed25519 private key (hex) for the Anubis PoW sidecar. Generate with:
|
|
# openssl rand -hex 32
|
|
# Only needed if you uncomment the anubis-owui service in docker-compose.yml.
|
|
ANUBIS_OWUI_KEY=replace-with-32-byte-hex
|
|
|
|
# ComfyUI image tag to deploy. `latest` tracks whatever the release workflow
|
|
# last pushed; pin to a v* tag (e.g. 0.1.0) for reproducible deploys.
|
|
COMFYUI_IMAGE_TAG=latest
|