mirror of
https://github.com/open-webui/open-webui.git
synced 2026-06-05 16:28:32 -05:00
[GH-ISSUE #12257] issue: Upgrade arm64 docker from 0.5.20 to 0.6.0 fails #16525
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 @lowlyocean on GitHub (Apr 1, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/12257
Check Existing Issues
Installation Method
Docker
Open WebUI Version
0.6.0
Ollama Version (if applicable)
No response
Operating System
Docker on Linux host
Browser (if applicable)
No response
Confirmation
README.md.Expected Behavior
Expecting the main process to launch but it seems to crash without any obvious Debug log message to show why
Actual Behavior
The arm64 docker container for 0.6.0 keeps restarting, the log shows this repeating section
Steps to Reproduce
Launch 0.5.20 via Docker on an arm64 host
Upgrade to 0.6.0 via Docker and notice it crashes
Logs & Screenshots
See above for looping log section
Additional Information
No response
@5418ly commented on GitHub (Apr 1, 2025):
Experenceied Same issue on arm64 platform on ghcr.io/open-webui/open-webui:main Imgage
@misterwigglesworth commented on GitHub (Apr 1, 2025):
Same thing on my dietpi
@lowlyocean commented on GitHub (Apr 1, 2025):
I opened a shell in the container to run
ulimit -c unlimitedand then again to doapt update && apt install gdb && gdb -c core, which reports the following:For reference, the host is a Raspberry Pi 4
@lowlyocean commented on GitHub (Apr 1, 2025):
After an
apt install python3-dbg && gdb python 1, it shows the culprit as the "onnxruntime" python package. Can we pin this to the version that was used in 0.5.20 (which looks like onnxruntime==1.20.1) until the regression in 1.21.0 is fixed?I can confirm that rolling back this package allows 0.6.0 to launch without SIGILL:
@spydisec commented on GitHub (Apr 1, 2025):
Likewise not working in arm based, host is Raspberry Pi 4b.
@jfrisancho commented on GitHub (Apr 1, 2025):
I have a question how can I upgrade I'm using docker I have the 0.5.20 and I want to upgrade to the 0.6.0. any ideas?
@spydisec commented on GitHub (Apr 1, 2025):
This will help you out:
https://docs.openwebui.com/getting-started/updating/
@sinfallas commented on GitHub (Apr 1, 2025):
not working on Raspberry Pi 4b.
@DJMo13 commented on GitHub (Apr 1, 2025):
I tried a fresh installation with an empty volume for the Raspberry Pi 4 Docker, but I still have the same restarting error.
I tried an installation with my ARM-based MacBook Docker and that worked fine.
@lowlyocean commented on GitHub (Apr 1, 2025):
If you have a Raspberry Pi, try this (might need to try a few times in order for it to finish)
@adintegra commented on GitHub (Apr 1, 2025):
This is a somewhat similar issue as discussed in latest docker image does not work on rpi4. A workaround is to build a custom image as described here using the version of
onnxruntime@lowlyocean mentions.