mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-09-24 11:06:24 +02:00
- svc-ai-ollama: - Add preload_models (llama3, mistral, nomic-embed-text) - Pre-pull task: loop_var=model, async-safe changed_when/failed_when - sys-svc-proxy (OpenResty): - Forward Authorization header - Ensure proxy_pass_request_headers on - web-app-openwebui: - ADMIN_EMAIL from users.administrator.email - Request RBAC group scope in OAUTH_SCOPES Ref: ChatGPT support (2025-09-23) — https://chatgpt.com/share/68d20588-2584-800f-aed4-26ce710c69c4
18 lines
401 B
YAML
18 lines
401 B
YAML
features:
|
|
local_ai: true # Needs to be set so that network is loaded
|
|
docker:
|
|
services:
|
|
ollama:
|
|
backup:
|
|
no_stop_required: true
|
|
image: ollama/ollama
|
|
version: latest
|
|
name: ollama
|
|
port: 11434
|
|
volumes:
|
|
models: "ollama_models"
|
|
network: "ollama"
|
|
preload_models:
|
|
- "llama3:latest"
|
|
- "mistral:latest"
|
|
- "nomic-embed-text:latest" |