Hello! I'm continuing a troubleshooting session from earlier with another assistant. Here is a quick summary of what we did to fix my Gateway, and the new minor issue I just ran into.
What we fixed:
- I had the
plugin not founderror due to an ownership mismatch. We removed it from the config. - I then hit the
Cannot access 'ANTHROPIC_MODEL_ALIASES' before initializationstartup crash (the known bug in OpenClaw 2026.3.12). - We successfully downgraded and pinned OpenClaw to
2026.3.11. Since I'm using Hostinger, we went with a custom Dockerfile to keep the Hostinger wrapper. We pinned it via digest and built a local image namedhvps-openclaw-pinned:2026.3.11. Everything was running perfectly!
My current issue:
I tried to add my OPENROUTER_API_KEY using the Hostinger Web Panel interface. The panel successfully added the key to my .env file, but then its automated deploy script crashed with this error:
pull access denied for hvps-openclaw-pinned, repository does not exist or may require 'docker login'
Because of this crash, the deployment aborted and right now my server is completely down and won't restart.
My questions for you:
- I assume Hostinger's script is hardcoded to run a
docker pullbefore starting, which fails because our pinned image is local. Since the.envfile is already updated, can I just jump into my SSH terminal, go to/docker/openclaw-bfch/and rundocker compose up -dto get the server back online? - Does this mean I should stop using the Hostinger web panel to manage env vars and restarts from now on, and only do it via SSH?
Thanks for picking this up!