mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-08 21:09:41 -05:00
[GH-ISSUE #103] cant find image #11932
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
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'
@apn4fighter commented on GitHub (Nov 13, 2023):
used now **docker run -d -p 3000:8080 --name ollama-webui ollamawebui/ollama-webui now it works
@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:
and NOT this:
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.)
If you have any other questions, don't hesitate to reach out. Thanks!