Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions local-ai-packaged/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,21 @@ x-init-ollama: &init-ollama
- "sleep 3; OLLAMA_HOST=ollama:11434 ollama pull llama3.1; OLLAMA_HOST=ollama:11434 ollama pull nomic-embed-text"

services:
open-webui-pipelines:
image: ghcr.io/open-webui/pipelines:main
networks: ['demo']
restart: unless-stopped
container_name: open-webui-pipelines
ports:
- "9099:9099"
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
- ./open-webui-pipelines:/app/pipelines
depends_on:
- open-webui
- postgres

open-webui:
image: ghcr.io/open-webui/open-webui:main
networks: ['demo']
Expand Down