Connection Lost on fresh install in Hostinger

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

5 Likes