Last active
January 17, 2026 04:05
-
-
Save 0xDE57/bc0c1df011b60c3ac9d4b1468f5ba554 to your computer and use it in GitHub Desktop.
Ollama openwebui on AMD 6700 / 6750 XT (gfx1030)
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
| #ollama with 6700 6750 XT (gfx1030) support | |
| docker run -d --restart always --device /dev/kfd --device /dev/dri -v ollama:/root/.ollama -p 11434:11434 --name ollama -e HSA_OVERRIDE_GFX_VERSION=10.3.0 -e HCC_AMDGPU_TARGET=gfx1030 ollama/ollama:rocm | |
| #open webui (no mandatory login: WEBUI_AUTH=False) | |
| docker run -d --network=host WEBUI_AUTH=False -v open-webui:/app/backend/data -e OLLAMA_BASE_URL=http://127.0.0.1:11434 --name open-webui --restart always ghcr.io/open-webui/open-webui:main |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
#update ollama
docker run --rm --volume /var/run/docker.sock:/var/run/docker.sock nickfedor/watchtower --run-once ollama
#update webui
docker run --rm --volume /var/run/docker.sock:/var/run/docker.sock nickfedor/watchtower --run-once open-webui