https://github.com/mmontes11/docker-ollama
Docker compose setup for Ollama and Open WebUI
https://github.com/mmontes11/docker-ollama
ai docker llm nvidia ollama openwebui
Last synced: 4 months ago
JSON representation
Docker compose setup for Ollama and Open WebUI
- Host: GitHub
- URL: https://github.com/mmontes11/docker-ollama
- Owner: mmontes11
- License: apache-2.0
- Created: 2025-02-08T13:43:54.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-01-26T09:27:23.000Z (5 months ago)
- Last Synced: 2026-01-26T23:52:34.546Z (5 months ago)
- Topics: ai, docker, llm, nvidia, ollama, openwebui
- Language: Shell
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-ollama
Docker compose setup for Ollama and Open WebUI
## CPU installation
```bash
docker compose up -d
```
## NVIDIA GPU installation in Ubuntu
First of all, make sure you have the nVidia drivers install. You may [follow this guide](https://github.com/oddmario/NVIDIA-Ubuntu-Driver-Guide?tab=readme-ov-file#-installing-through-the-graphics-drivers-ppa-repository-recommended).
Then, install the [NVIDIA Container Toolkit](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html#installation) package:
```bash
sudo bash scripts/nvidia.sh
```
Finally, run the docker compose:
```bash
docker compose -f docker-compose.yml -f docker-compose.gpu.yml up -d
```