[GH-ISSUE #103] cant find image #11932

Closed
opened 2026-04-19 18:38:03 -05:00 by GiteaMirror · 2 comments
Owner

Originally created by @apn4fighter on GitHub (Nov 13, 2023).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/103

Hi All

I wanted to try it with the command docker run -d -p 3000:8080 --name ollama-webui:latest --restart always ollama-webui
but then this happens

Unable to find image 'ollama-webui:latest' locally
docker: Error response from daemon: pull access denied for ollama-webui, repository does not exist or may require 'docker login': denied: requested access to the resource is denied.
See 'docker run --help'

Originally created by @apn4fighter on GitHub (Nov 13, 2023). Original GitHub issue: https://github.com/open-webui/open-webui/issues/103 Hi All I wanted to try it with the command docker run -d -p 3000:8080 --name ollama-webui:latest --restart always ollama-webui but then this happens Unable to find image 'ollama-webui:latest' locally docker: Error response from daemon: pull access denied for ollama-webui, repository does not exist or may require 'docker login': denied: requested access to the resource is denied. See 'docker run --help'
Author
Owner

@apn4fighter commented on GitHub (Nov 13, 2023):

used now **docker run -d -p 3000:8080 --name ollama-webui ollamawebui/ollama-webui now it works

<!-- gh-comment-id:1809076329 --> @apn4fighter commented on GitHub (Nov 13, 2023): used now ****docker run -d -p 3000:8080 --name ollama-webui ollamawebui/ollama-webui** now it works
Author
Owner

@tjbck commented on GitHub (Nov 14, 2023):

Hi, it looks like you were encountering the issue because you didn't have the container image built.

As per the instruction in README.md (https://github.com/ollama-webui/ollama-webui#using-docker-), the following should've been the commands to build and run the container:

docker build --build-arg OLLAMA_API_BASE_URL='' -t ollama-webui .
docker run -d -p 3000:8080 --name ollama-webui --restart always ollama-webui

and NOT this:

docker run -d -p 3000:8080 --name ollama-webui:latest --restart always ollama-webui

In addition, 'ollamawebui/ollama-webui' has been deprecated and pulling the prebuilt container image from 'ghcr.io/ollama-webui/ollama-webui:main' is recommended, which will have the most up-to-date features by default.

e.g.)

docker run -d -p 3000:8080 --name ollama-webui --restart always ghcr.io/ollama-webui/ollama-webui:main

If you have any other questions, don't hesitate to reach out. Thanks!

<!-- gh-comment-id:1809588925 --> @tjbck commented on GitHub (Nov 14, 2023): Hi, it looks like you were encountering the issue because you didn't have the container image built. As per the instruction in README.md (https://github.com/ollama-webui/ollama-webui#using-docker-), the following should've been the commands to **build** and **run** the container: ``` docker build --build-arg OLLAMA_API_BASE_URL='' -t ollama-webui . docker run -d -p 3000:8080 --name ollama-webui --restart always ollama-webui ``` and **NOT** this: ``` docker run -d -p 3000:8080 --name ollama-webui:latest --restart always ollama-webui ``` In addition, 'ollamawebui/ollama-webui' has been **deprecated** and pulling the prebuilt container image from 'ghcr.io/ollama-webui/ollama-webui:main' is **recommended**, which will have the most up-to-date features by default. e.g.) ``` docker run -d -p 3000:8080 --name ollama-webui --restart always ghcr.io/ollama-webui/ollama-webui:main ``` If you have any other questions, don't hesitate to reach out. Thanks!
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#11932