Last active
February 2, 2026 16:42
-
-
Save alexishida/0a035eacb0d4c7b23a540323268e1050 to your computer and use it in GitHub Desktop.
Ollama - open-webui Instalation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl -fsSL https://ollama.com/install.sh | sh | |
| # https://ollama.com/library | |
| ollama run llama3.2:1b | |
| ip addr show docker0 | grep "inet " | |
| sudo mkdir -p /etc/systemd/system/ollama.service.d | |
| echo -e "[Service]\nEnvironment=\"OLLAMA_HOST=0.0.0.0\"" | sudo tee /etc/systemd/system/ollama.service.d/override.conf | |
| sudo systemctl daemon-reload | |
| sudo systemctl restart ollama | |
| ss -tulpn | grep 11434 | |
| docker run -d \ | |
| --name open-webui \ | |
| --restart=always \ | |
| -p 3030:8080 \ | |
| -e OLLAMA_BASE_URL=http://172.17.0.1:11434 \ | |
| -v /storage/open-webui:/app/data \ | |
| -v /etc/localtime:/etc/localtime:ro \ | |
| ghcr.io/open-webui/open-webui:main |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment