1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-10-09 17:38:14 +02:00
Files
wiki/wiki/docker/open-webui_-_open-webui.md

1.1 KiB

open-webui - open-webui

This is a Docker container for a Open WebUI server. The official container and documentation was made by open-webui.

Set-up

Create the file rebuild.sh. Change the settings according to your needs and run ./rebuild.sh afterwards.

Ports

Set the following ports in the ports: section.

Container Port Recommended outside port Protocol Description
11434 8080 TCP WebUI

Volumes

Set the following volumes with the -v tag.

Outside mount/volume name Container mount Description
open-webui /app/backend/data Open WebUI data

rebuild.sh

#!/bin/sh
docker stop openwebui
docker rm openwebui
docker pull ghcr.io/open-webui/open-webui:main
docker run --name openwebui \
    --restart unless-stopped \
    -p 11434:8080 \
    -v open-webui:/app/backend/data \
    -d ghcr.io/open-webui/open-webui:main