Perhaps you changed the uvicorn port in Docker at a certain point. Anyhow updating documentation and Docker compose should fix this. Alternatively you could configure uvicorn to port 3000.
Originally created by @mcapuccini on GitHub (Jul 30, 2024).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/4212
# Bug Report
## Description
**Bug Summary:**
You are forwarding the wrong port on compose and docker run i the docs. For example, in your docs you have:
```
docker run -d -p 3000:8080 -v ollama:/root/.ollama -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:ollama
```
The correct command should be:
```
docker run -d -p 8080:8080 -v ollama:/root/.ollama -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:ollama
```
Perhaps you changed the uvicorn port in Docker at a certain point. Anyhow updating documentation and Docker compose should fix this. Alternatively you could configure uvicorn to port 3000.
No, the docs are correct. I'm afraid it's you who is mistaken. Please refer to Docker documentation regarding "Published Ports".
<!-- gh-comment-id:2258135516 -->
@justinh-rahb commented on GitHub (Jul 30, 2024):
No, the docs are correct. I'm afraid it's you who is mistaken. Please refer to Docker documentation regarding "Published Ports".
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 @mcapuccini on GitHub (Jul 30, 2024).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/4212
Bug Report
Description
Bug Summary:
You are forwarding the wrong port on compose and docker run i the docs. For example, in your docs you have:
The correct command should be:
Perhaps you changed the uvicorn port in Docker at a certain point. Anyhow updating documentation and Docker compose should fix this. Alternatively you could configure uvicorn to port 3000.
@justinh-rahb commented on GitHub (Jul 30, 2024):
No, the docs are correct. I'm afraid it's you who is mistaken. Please refer to Docker documentation regarding "Published Ports".