Benutzer-Werkzeuge

Webseiten-Werkzeuge


simplepod
curl -fsSL https://ollama.com/install.sh | sh
ollama serve > /tmp/ollama.log 2>&1 &

apt install -y python3-full pipx
python3 -m venv /opt/openwebui
source /opt/openwebui/bin/activate

pip install --upgrade pip
pip install open-webui --break-system-packages

OLLAMA_BASE_URL=http://127.0.0.1:11435 open-webui serve --host 0.0.0.0 --port 11434 #11434 ist der port von simplepod
# Template ollama/ollama

# Connect SSH

# Install docker
sudo apt install -y docker.io

# Pull image
ollama pull gpt-oss:20b

# run webui
docker run -d \
  --name open-webui \
  -p 3000:8080 \
  -e OLLAMA_BASE_URL=http://host.docker.internal:11434 \
  -v open-webui:/app/backend/data \
  --restart unless-stopped \
  ghcr.io/open-webui/open-webui:main
simplepod.txt · Zuletzt geändert: 2025/11/16 15:14 von admin