- Improve documentation - Clean dependencies - Use the official oneAPI Base Toolkit Breaking change: - Container name changed to ollama-intel-arc
33 lines
740 B
YAML
33 lines
740 B
YAML
version: '3'
|
|
services:
|
|
ollama-intel-arc:
|
|
build: .
|
|
image: ollama-intel-arc:latest
|
|
container_name: ollama-intel-arc
|
|
restart: unless-stopped
|
|
devices:
|
|
- /dev/dri:/dev/dri
|
|
volumes:
|
|
- ollama-volume:/root/.ollama
|
|
ports:
|
|
- 11434:11434
|
|
open-webui:
|
|
image: ghcr.io/open-webui/open-webui:latest
|
|
container_name: open-webui
|
|
volumes:
|
|
- open-webui-volume:/app/backend/data
|
|
depends_on:
|
|
- ollama-intel-arc
|
|
ports:
|
|
- 3000:8080
|
|
environment:
|
|
- WEBUI_AUTH=False
|
|
- ENABLE_OPENAI_API=False
|
|
- ENABLE_OLLAMA_API=True
|
|
extra_hosts:
|
|
- host.docker.internal:host-gateway
|
|
restart: unless-stopped
|
|
volumes:
|
|
ollama-volume: {}
|
|
open-webui-volume: {}
|