We'll be using an old Laptop for this with a freshly installed version of Ubuntu 24.04.
- Install Ollama
- curl -fsSL https://ollama.com/install.sh | sh
# systemctl edit ollama.service
[Service] Environment="OLLAMA_HOST=0.0.0.0"
- Restart Ollama by :
# systemctl restart ollama
- This will make it so Ollama listens on all IPs
- Pull an LLM
- ollama pull qwen2.5:7b
- Install Docker
- Run Container;
docker run -d --network=host --add-host=host.docker.internal:host-gateway -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:main- Install Go