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'
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
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!
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
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!