Open WebUI + Podman
by
Jikku Jose
in
jikkujose.in

Installing open webui using Podman is a bit tricky, it requires different configs from Docker.

podman run -d \
  --name open-webui \
  --network host \
  -v open-webui:/app/backend/data \
  -e OLLAMA_BASE_URL=http://127.0.0.1:11434 \
  --restart=always \
  ghcr.io/open-webui/open-webui:main

Why It Works

Technical Requirements

Pre-flight Checks

# Verify image exists
podman images | grep open-webui

# Check existing volumes
podman volume ls

# Verify Ollama is running
curl http://127.0.0.1:11434/api/tags

Cleanup If Needed

# Remove existing container
podman rm -f open-webui

# Remove volume if reset needed
podman volume rm open-webui

Implementation Notes