[GH-ISSUE #4212] Incorrect port on compose and Docker run docs #13533

Closed
opened 2026-04-19 20:14:49 -05:00 by GiteaMirror · 1 comment
Owner

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.

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.
Author
Owner

@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".

<!-- 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".
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#13533