[PR #5918] [CLOSED] refac: remove docker warnings #8578

Closed
opened 2025-11-11 18:00:15 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/5918
Author: @Nowheresly
Created: 10/5/2024
Status: Closed

Base: mainHead: dockerwarn


📝 Commits (10+)

  • a4bc0b2 fix: Fix OpenAI batch embedding
  • 4fe1f24 fix: Fix OpenAI batch embedding
  • 3af50f0 Merge pull request #5728 from sp301415/dev
  • 4c92a0f chore: chromadb, pymilvus bump
  • 8204f06 Merge pull request #5741 from open-webui/main
  • 1715446 fix: call mode persisting after width change issue
  • d8f71e1 Some models produce almost correct json during function calling, but with additional data before of after it. This solves it.
  • 619c814 Migration link updated
  • fbc9634 Merge pull request #5742 from not-a-ethan/corrected-link
  • 719f4da fix: milvus collection creation issue

📊 Changes

156 files changed (+6903 additions, -2123 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.md (+4 -0)
📝 .github/ISSUE_TEMPLATE/feature_request.md (+6 -0)
📝 Dockerfile (+4 -4)
📝 README.md (+3 -3)
📝 backend/open_webui/apps/audio/main.py (+137 -96)
📝 backend/open_webui/apps/ollama/main.py (+5 -2)
📝 backend/open_webui/apps/openai/main.py (+10 -6)
backend/open_webui/apps/retrieval/loaders/main.py (+190 -0)
📝 backend/open_webui/apps/retrieval/main.py (+380 -685)
backend/open_webui/apps/retrieval/models/colbert.py (+81 -0)
📝 backend/open_webui/apps/retrieval/utils.py (+59 -47)
📝 backend/open_webui/apps/retrieval/vector/connector.py (+4 -4)
📝 backend/open_webui/apps/retrieval/vector/dbs/chroma.py (+57 -19)
📝 backend/open_webui/apps/retrieval/vector/dbs/milvus.py (+48 -11)
📝 backend/open_webui/apps/retrieval/vector/main.py (+0 -0)
📝 backend/open_webui/apps/retrieval/web/brave.py (+1 -1)
📝 backend/open_webui/apps/retrieval/web/duckduckgo.py (+1 -1)
📝 backend/open_webui/apps/retrieval/web/google_pse.py (+1 -1)
📝 backend/open_webui/apps/retrieval/web/jina_search.py (+1 -1)
📝 backend/open_webui/apps/retrieval/web/main.py (+0 -0)

...and 80 more files

📄 Description

Changelog Entry

Remove docker warnings to ensure compatibility with future versions of Docker

Description

  • The official syntax for Dockerfile is described here
  • ENV must use '='
  • AS must be in upper case

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/open-webui/open-webui/pull/5918 **Author:** [@Nowheresly](https://github.com/Nowheresly) **Created:** 10/5/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dockerwarn` --- ### 📝 Commits (10+) - [`a4bc0b2`](https://github.com/open-webui/open-webui/commit/a4bc0b2829a6260d33e84a5768409e338d5fbb34) fix: Fix OpenAI batch embedding - [`4fe1f24`](https://github.com/open-webui/open-webui/commit/4fe1f2487dde8458964d756a402c0a9278f87620) fix: Fix OpenAI batch embedding - [`3af50f0`](https://github.com/open-webui/open-webui/commit/3af50f08bdada039af86184254a54cb736bafbcd) Merge pull request #5728 from sp301415/dev - [`4c92a0f`](https://github.com/open-webui/open-webui/commit/4c92a0f57110e9c7c27e970eb96ca4011f0df580) chore: chromadb, pymilvus bump - [`8204f06`](https://github.com/open-webui/open-webui/commit/8204f0648577cd640ee550b8d45236f54a2e38ec) Merge pull request #5741 from open-webui/main - [`1715446`](https://github.com/open-webui/open-webui/commit/1715446b13ba8cc8dba536823ee5e0444d256dc0) fix: call mode persisting after width change issue - [`d8f71e1`](https://github.com/open-webui/open-webui/commit/d8f71e1d7ff8fbe8e2a79c91bdb6e58ff27f6ace) Some models produce almost correct json during function calling, but with additional data before of after it. This solves it. - [`619c814`](https://github.com/open-webui/open-webui/commit/619c81472b9511525b0769e5fe1d5a0a4d91c95a) Migration link updated - [`fbc9634`](https://github.com/open-webui/open-webui/commit/fbc9634ffc206818e12d874dc5743c8c08f5bd98) Merge pull request #5742 from not-a-ethan/corrected-link - [`719f4da`](https://github.com/open-webui/open-webui/commit/719f4da1dcdd91d083165aa4956d2a8441d8e665) fix: milvus collection creation issue ### 📊 Changes **156 files changed** (+6903 additions, -2123 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.md` (+4 -0) 📝 `.github/ISSUE_TEMPLATE/feature_request.md` (+6 -0) 📝 `Dockerfile` (+4 -4) 📝 `README.md` (+3 -3) 📝 `backend/open_webui/apps/audio/main.py` (+137 -96) 📝 `backend/open_webui/apps/ollama/main.py` (+5 -2) 📝 `backend/open_webui/apps/openai/main.py` (+10 -6) ➕ `backend/open_webui/apps/retrieval/loaders/main.py` (+190 -0) 📝 `backend/open_webui/apps/retrieval/main.py` (+380 -685) ➕ `backend/open_webui/apps/retrieval/models/colbert.py` (+81 -0) 📝 `backend/open_webui/apps/retrieval/utils.py` (+59 -47) 📝 `backend/open_webui/apps/retrieval/vector/connector.py` (+4 -4) 📝 `backend/open_webui/apps/retrieval/vector/dbs/chroma.py` (+57 -19) 📝 `backend/open_webui/apps/retrieval/vector/dbs/milvus.py` (+48 -11) 📝 `backend/open_webui/apps/retrieval/vector/main.py` (+0 -0) 📝 `backend/open_webui/apps/retrieval/web/brave.py` (+1 -1) 📝 `backend/open_webui/apps/retrieval/web/duckduckgo.py` (+1 -1) 📝 `backend/open_webui/apps/retrieval/web/google_pse.py` (+1 -1) 📝 `backend/open_webui/apps/retrieval/web/jina_search.py` (+1 -1) 📝 `backend/open_webui/apps/retrieval/web/main.py` (+0 -0) _...and 80 more files_ </details> ### 📄 Description # Changelog Entry Remove docker warnings to ensure compatibility with future versions of Docker ### Description - The official syntax for Dockerfile is described [here](https://docs.docker.com/reference/dockerfile/#env) - ENV must use '=' - AS must be in upper case --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-11 18:00:15 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#8578