It seems that the port mentioned in the readme.md is incorrect. #3486

Closed
opened 2025-11-11 15:32:42 -06:00 by GiteaMirror · 1 comment
Owner

Originally created by @vgnshiyer on GitHub (Jan 29, 2025).

Confirmation:

  • I have read and followed all the instructions provided in the README.md.
  • I am on the latest version of both Open WebUI and Ollama.
  • I have included the browser console logs.
  • I have included the Docker container logs.
  • I have provided the exact steps to reproduce the bug in the "Steps to Reproduce" section below.

Description:

The readme mentions portforwarding as 3000:8080. That seems misleading

Image

docker run -d -p 8080:8080 --add-host=host.docker.internal:host-gatewa...

However from the container logs, it seems that the application is running on port 8080.

Container logs:

2025-01-29 12:14:43 Running migrations
2025-01-29 12:14:47 
2025-01-29 12:14:47   ___                    __        __   _     _   _ ___
2025-01-29 12:14:47  / _ \ _ __   ___ _ __   \ \      / /__| |__ | | | |_ _|
2025-01-29 12:14:47 | | | | '_ \ / _ \ '_ \   \ \ /\ / / _ \ '_ \| | | || |
2025-01-29 12:14:47 | |_| | |_) |  __/ | | |   \ V  V /  __/ |_) | |_| || |
2025-01-29 12:14:47  \___/| .__/ \___|_| |_|    \_/\_/ \___|_.__/ \___/|___|
2025-01-29 12:14:47       |_|
2025-01-29 12:14:47 
2025-01-29 12:14:47 
2025-01-29 12:14:47 v0.5.7 - building the best open-source AI user interface.
2025-01-29 12:14:47 
2025-01-29 12:14:47 https://github.com/open-webui/open-webui
2025-01-29 12:14:47 
2025-01-29 12:14:43 INFO  [alembic.runtime.migration] Context impl SQLiteImpl.
2025-01-29 12:14:43 INFO  [alembic.runtime.migration] Will assume non-transactional DDL.
2025-01-29 12:14:43 INFO  [open_webui.env] 'DEFAULT_LOCALE' loaded from the latest database entry
2025-01-29 12:14:43 INFO  [open_webui.env] 'DEFAULT_PROMPT_SUGGESTIONS' loaded from the latest database entry
2025-01-29 12:14:43 WARNI [open_webui.env] 
2025-01-29 12:14:43 
2025-01-29 12:14:43 WARNING: CORS_ALLOW_ORIGIN IS SET TO '*' - NOT RECOMMENDED FOR PRODUCTION DEPLOYMENTS.
2025-01-29 12:14:43 
2025-01-29 12:14:43 INFO  [open_webui.env] Embedding model set: sentence-transformers/all-MiniLM-L6-v2
2025-01-29 12:14:44 WARNI [langchain_community.utils.user_agent] USER_AGENT environment variable not set, consider setting it to identify your requests.
2025-01-29 12:14:47 
Fetching 30 files:   0%|          | 0/30 [00:00<?, ?it/s]
Fetching 30 files:  47%|████▋     | 14/30 [00:00<00:00, 79.60it/s]
Fetching 30 files: 100%|██████████| 30/30 [00:00<00:00, 170.30it/s]
2025-01-29 12:14:47 INFO:     Started server process [1]
2025-01-29 12:14:47 INFO:     Waiting for application startup.
2025-01-29 12:14:47 INFO:     Application startup complete.
2025-01-29 12:14:47 INFO:     Uvicorn running on http://0.0.0.0:8080 (Press CTRL+C to quit)

It should be:

docker run -d -p 8080:8080 --add-host=host.docker.internal:host-gate...

Originally created by @vgnshiyer on GitHub (Jan 29, 2025). **Confirmation:** - [x] I have read and followed all the instructions provided in the README.md. - [x] I am on the latest version of both Open WebUI and Ollama. - [x] I have included the browser console logs. - [x] I have included the Docker container logs. - [x] I have provided the exact steps to reproduce the bug in the "Steps to Reproduce" section below. ## Description: The readme mentions portforwarding as 3000:8080. That seems misleading ![Image](https://github.com/user-attachments/assets/9c8c09e0-5670-4706-a29f-4d0aa0c30c5b) docker run -d -p 8080:8080 --add-host=host.docker.internal:host-gatewa... However from the container logs, it seems that the application is running on port 8080. Container logs: ``` 2025-01-29 12:14:43 Running migrations 2025-01-29 12:14:47 2025-01-29 12:14:47 ___ __ __ _ _ _ ___ 2025-01-29 12:14:47 / _ \ _ __ ___ _ __ \ \ / /__| |__ | | | |_ _| 2025-01-29 12:14:47 | | | | '_ \ / _ \ '_ \ \ \ /\ / / _ \ '_ \| | | || | 2025-01-29 12:14:47 | |_| | |_) | __/ | | | \ V V / __/ |_) | |_| || | 2025-01-29 12:14:47 \___/| .__/ \___|_| |_| \_/\_/ \___|_.__/ \___/|___| 2025-01-29 12:14:47 |_| 2025-01-29 12:14:47 2025-01-29 12:14:47 2025-01-29 12:14:47 v0.5.7 - building the best open-source AI user interface. 2025-01-29 12:14:47 2025-01-29 12:14:47 https://github.com/open-webui/open-webui 2025-01-29 12:14:47 2025-01-29 12:14:43 INFO [alembic.runtime.migration] Context impl SQLiteImpl. 2025-01-29 12:14:43 INFO [alembic.runtime.migration] Will assume non-transactional DDL. 2025-01-29 12:14:43 INFO [open_webui.env] 'DEFAULT_LOCALE' loaded from the latest database entry 2025-01-29 12:14:43 INFO [open_webui.env] 'DEFAULT_PROMPT_SUGGESTIONS' loaded from the latest database entry 2025-01-29 12:14:43 WARNI [open_webui.env] 2025-01-29 12:14:43 2025-01-29 12:14:43 WARNING: CORS_ALLOW_ORIGIN IS SET TO '*' - NOT RECOMMENDED FOR PRODUCTION DEPLOYMENTS. 2025-01-29 12:14:43 2025-01-29 12:14:43 INFO [open_webui.env] Embedding model set: sentence-transformers/all-MiniLM-L6-v2 2025-01-29 12:14:44 WARNI [langchain_community.utils.user_agent] USER_AGENT environment variable not set, consider setting it to identify your requests. 2025-01-29 12:14:47 Fetching 30 files: 0%| | 0/30 [00:00<?, ?it/s] Fetching 30 files: 47%|████▋ | 14/30 [00:00<00:00, 79.60it/s] Fetching 30 files: 100%|██████████| 30/30 [00:00<00:00, 170.30it/s] 2025-01-29 12:14:47 INFO: Started server process [1] 2025-01-29 12:14:47 INFO: Waiting for application startup. 2025-01-29 12:14:47 INFO: Application startup complete. 2025-01-29 12:14:47 INFO: Uvicorn running on http://0.0.0.0:8080 (Press CTRL+C to quit) ``` It should be: docker run -d -p 8080:8080 --add-host=host.docker.internal:host-gate...
Author
Owner

@chandujr commented on GitHub (Jan 30, 2025):

What happened to this issue? I'm not able to access web UI in localhost:3000 as mentioned in the doc. Is it a problem with the port number?

Firefox is showing me this:

Image

@chandujr commented on GitHub (Jan 30, 2025): What happened to this issue? I'm not able to access web UI in localhost:3000 as mentioned in the doc. Is it a problem with the port number? Firefox is showing me this: ![Image](https://github.com/user-attachments/assets/42fa3b63-e5dd-48fc-b6c3-5051dc207e71)
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#3486