Add deployment scripts and configuration for Open WebUI + Ollama stack on Linux

This commit is contained in:
2026-04-12 16:24:25 -04:00
commit 646e83eaad
4 changed files with 151 additions and 0 deletions

16
openwebui-ollama.service Normal file
View File

@@ -0,0 +1,16 @@
[Unit]
Description=Open WebUI + Ollama Docker Stack
Requires=docker.service
After=docker.service network-online.target
Wants=network-online.target
[Service]
Type=oneshot
RemainAfterExit=yes
WorkingDirectory=/opt/openwebui-ollama
ExecStart=/usr/bin/docker compose up -d
ExecStop=/usr/bin/docker compose down
TimeoutStartSec=0
[Install]
WantedBy=multi-user.target