Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cant find image #103

Closed
apn4fighter opened this issue Nov 13, 2023 · 2 comments
Closed

cant find image #103

apn4fighter opened this issue Nov 13, 2023 · 2 comments

Comments

@apn4fighter
Copy link

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
Copy link
Author

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

@tjbck tjbck closed this as completed Nov 14, 2023
@tjbck
Copy link
Contributor

tjbck commented 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 up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants