Hi! We need some help with a restart loop after updating OpenClaw on our Linux VPS (Docker).
We updated to version 2026.4.26 using our usual procedure:
- Pulled
ghcr.io/openclaw/openclaw:latest - Stopped and removed the old container
- Ran the new one:
docker run -d --name openclaw-gateway --restart always -p 18789:18789 -e DISCORD_TOKEN="<hidden>" -v /home/clawd/.openclaw:/home/node/.openclaw ghcr.io/openclaw/openclaw:latest - Installed ffmpeg inside it:
apt-get update && apt-get install -y ffmpeg
The Issue:
The container boots up, installs runtime deps, and reaches [gateway] starting channels and sidecars.... Then it freezes for about 60-70 seconds and silently restarts the whole process (loading configurationā¦), looping infinitely.
Our main question:
Does version 2026.4.26 require a new installation method, a different setup, or new ENV variables that we missed?
What we already investigated:
- Not an OOM kill: Checked
dmesg, the host is not killing it due to lack of RAM. - Clean Exit:
docker inspectshowsExit Code: 0. Not a fatal Node crash. - Watchdog timeout? Since it exits right after ~60s, we suspect the
[health-monitor](startup-grace: 60s) is pulling the plug because a channel or plugin is hanging during startup.
Are we missing a breaking change in the update procedure? Thanks in advance!
@brave compass