open-terminal 0.11.34 bare-metal (human-authorized host install) with a systemd template unit: reachableceo on tailscale-only :30000 (cwd ~/projects) and all 8 other accounts on :30001-30008, each with its own key kept out of ps in per-user TOMLs, all users added to the docker group. Keys live in ~/.creds + /etc/ukrrs/open-terminal, never in this repo. UAT: throwaway OpenWebUI v0.11.1 (matched to the human's Cloudron prod) driven purely over its HTTP API against the beta gateway lane - connection verify/config PASS, direct exec as uid 1001 PASS, and the chat round trip PASS: the model emitted run_command, we executed it through OpenWebUI's terminal proxy (server holds the key), and the final answer named 9/9 real project directories; earlier negative runs prove the test catches hallucinated output. Ops note OPEN-TERMINAL.md documents production wiring (prod openwebui container v0.3.10 is too old and needs an upgrade first). Also tonight: agent-stack relaunchers removed (6-, backups kept) so no screen/crush sessions auto-start on reboot; 22:00 night-profile flip observed live; docs synced for the earlier teardown. 💘 Generated with Crush Assisted-by: Crush:glm-5.2 [#610]
26 lines
974 B
YAML
26 lines
974 B
YAML
# UAT harness for Open Terminal (#610). Throwaway OpenWebUI matched to the
|
|
# human's Cloudron prod version (v0.11.1). Host networking: reaches the beta
|
|
# gateway (127.0.0.1:4002) and the open-terminal fleet (100.101.187.119) in
|
|
# one hop. Loopback-only bind; torn down by 9-uat-openwebui.sh when done.
|
|
# Secrets come from uat/.env (gitignored; written by 9-uat-openwebui.sh).
|
|
services:
|
|
openwebui-uat:
|
|
image: ghcr.io/open-webui/open-webui:v0.11.1
|
|
container_name: ukrrs-openwebui-uat
|
|
network_mode: host
|
|
environment:
|
|
- WEBUI_NAME=OpenWebUI UAT (open-terminal)
|
|
- PORT=8081
|
|
- UVICORN_HOST=127.0.0.1
|
|
- ENABLE_SIGNUP=true
|
|
- WEBUI_SECRET_KEY=${WEBUI_SECRET_KEY}
|
|
- OPENAI_API_BASE_URL=${OPENAI_API_BASE_URL}
|
|
- OPENAI_API_KEY=${OPENAI_API_KEY}
|
|
- DEFAULT_MODELS=${DEFAULT_MODELS}
|
|
- ENABLE_VERSION_UPDATE_CHECK=false
|
|
volumes:
|
|
- openwebui-uat:/app/backend/data
|
|
restart: "no"
|
|
volumes:
|
|
openwebui-uat:
|