mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-07 19:38:46 -05:00
[GH-ISSUE #18416] feat: Remove unused build argument OLLAMA_BASE_URL from docker-compose.yml #57257
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @kepuvv on GitHub (Oct 18, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/18416
Check Existing Issues
Problem Description
The docker-compose.yml file includes a build.args entry for OLLAMA_BASE_URL (
9ae06a3cac/docker-compose.yaml (L15)),but this argument is never declared in the Dockerfile using ARG, and therefore has no effect during the build.
Desired Solution you'd like
It seems safe to remove this line to avoid confusion and keep the configuration clean.
Alternatives Considered
No response
Additional Context
No response