Files
ai_at_home/ansible/roles/openwebui/templates/composefile.yml
2026-03-20 13:20:58 +01:00

18 lines
462 B
YAML

---
services:
open-webui:
image: {{ openwebui_image }}:{{ openwebui_image_tag }}
network_mode: host
environment:
FORWARDED_ALLOW_IPS: '*'
OLLAMA_BASE_URL: http://localhost:11434
OFFLINE_MODE: True
DEFAULT_USER_ROLE: user
volumes:
- {{ openwebui_install_dir }}/data:/app/backend/data
{% if openwebui_container_labels %}
labels:
{{ openwebui_container_labels|to_nice_yaml|indent(4) }}
{% endif %}