This fork of Open-Webui is a web interface for Lucie developped by OpenLLM-France and LINAGORA.
Please refer to the original project for manual installation instructions.
We provide a Docker image for easy deployment. Use the following docker-compose for a quick start:
services:
ollama:
volumes:
- ollama:/root/.ollama
container_name: ollama
pull_policy: always
tty: true
restart: unless-stopped
image: ollama/ollama:latest
open-webui-lucie:
image: ghcr.io/openllm-france/open-webui-lucie:latest
container_name: open-webui-lucie
volumes:
- open-webui:/app/backend/data
depends_on:
- ollama
ports:
- 3000:8080
environment:
- 'OLLAMA_BASE_URL=http://ollama:11434'
- 'WEBUI_SECRET_KEY='
extra_hosts:
- host.docker.internal:host-gateway
restart: unless-stopped
volumes:
ollama: {}
open-webui: {}