Lucy bind paths + LAN host pins replaced with env defaults. Repository URLs → git.sulkta.com. Audit-changelog scaffolding stripped from inline comments (technical reasoning preserved). README sheds marketing scaffolding. AI-speak in load-bearing prompts/SOULs left alone — that IS the product.
16 lines
449 B
YAML
16 lines
449 B
YAML
name: cauldron
|
|
|
|
services:
|
|
cauldron:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
image: cauldron:local
|
|
container_name: cauldron
|
|
restart: unless-stopped
|
|
env_file:
|
|
# Point at wherever your secrets file lives. Override via .env at the
|
|
# compose root: `CAULDRON_ENV_FILE=/srv/secrets/cauldron.env`.
|
|
- ${CAULDRON_ENV_FILE:-./.env}
|
|
ports:
|
|
- "${CAULDRON_BIND:-0.0.0.0}:${CAULDRON_PORT:-7790}:7790"
|