add open-webui
Deploy Containers / Prepare (push) Successful in 12s

This commit is contained in:
2026-07-06 02:19:57 -04:00
parent 434042684b
commit 9ec4a3eb60
2 changed files with 24 additions and 0 deletions
+3
View File
@@ -94,6 +94,9 @@
- name: Deploy Subber - name: Deploy Subber
import_tasks: tasks/utility/subber.yml import_tasks: tasks/utility/subber.yml
tags: subber_deploy tags: subber_deploy
- name: Deploy OWUI
import_tasks: tasks/utility/owui.yml
tags: owui_deploy
- hosts: jackson - hosts: jackson
+21
View File
@@ -0,0 +1,21 @@
---
- name: Deploy Open-WebUI
include_role:
name: docker
vars:
name: owui
directories:
- "{{ data_dir }}/owui"
image:
name: ghcr.io/open-webui/open-webui
tag: main
networks:
- name: homelab
volumes:
- "{{ data_dir }}/owui:/app/backend/data"
labels:
traefik.enable: "true"
traefik.http.routers.owui.rule: Host(`owui.fntz.net`)
traefik.http.routers.owui.entrypoints: webSecure
traefik.http.routers.owui.tls.certresolver: letsencrypt
traefik.http.services.owui.loadbalancer.server.port: "8080"