This repository contains a Docker Compose configuration for running WEBUI with your local Ollama instance.
- Docker
- Docker Compose
- Ollama running locally on port 11434
-
Ensure Ollama is running on your local machine
-
Start WEBUI:
docker compose up -d
-
Access WEBUI at:
http://localhost:3000
All WEBUI data is stored in the ./data directory, including:
- User accounts and authentication
- Chat history and conversations
- Database files
- User preferences and settings
- Custom configurations
To backup your WEBUI installation:
- Copy the
datadirectory - Keep your
docker-compose.ymlfile
To restore:
- Place
docker-compose.ymlin the desired location - Copy your backed-up
datadirectory to the same location - Run
docker compose up -d
To stop WEBUI:
docker compose downTo stop and remove volume:
docker compose down -v