Connection lost on Hostinger running 1.95.2

Since this morning i’ve been hit by “connection lost” on self hosted version. I’ve seen that the fix is to update to 1.97, but if i hit docker compose pull , there is no new version available.

Does anyone has any idea on how to get that new version?

To fix this, you need to pull the 1.97.0 version yourself with this command docker pull docker.n8n.io/n8nio/n8n:1.97.0
After you pull it, you need to modify you’re docker-compose.yml in the n8n part
From this:
n8n:
image: docker.n8n.io/n8nio/n8n
restart: always

To this:
n8n:
image: docker.n8n.io/n8nio/n8n:1.97.0
restart: always

After you modify it, save the file and use the command:
docker compose up -d
It should work just fine