Skip to content

Instantly share code, notes, and snippets.

@iptoux
Created March 1, 2024 21:59
Show Gist options
  • Save iptoux/c3964b2d6119440560b1c18ff712732b to your computer and use it in GitHub Desktop.
Save iptoux/c3964b2d6119440560b1c18ff712732b to your computer and use it in GitHub Desktop.
Docker Compose of Ollma + OpenWebui
version: "3"
services:
open-webui:
image: ghcr.io/open-webui/open-webui:main
container_name: open-webui
restart: always
extra_hosts:
- "host.docker.internal:host-gateway"
ports:
- "3000:8080"
volumes:
- /data/open-webui:/app/backend/data
ollma:
image: ollama/ollama
container_name: ollama
restart: always
ports:
- "11434:11434"
volumes:
- /data/ollama:/root/.ollama
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment