Im seeing youtube videos that update their n8n on hostinger VPS by just clicking the update button. Is it the same as updating from the terminal window?
thank you kind sir, you are awesome
ill update when I am 5 versions behind. right now its only 2 versions behind and I am one of those who belives in the saying “if it ain’t broken, don’t fix it.”
Yes, it does the same thing under the hood. That button is just a UI wrapper, it pulls the latest n8n Docker image and recreates the container, which is exactly what you’d do in terminal with docker pull n8nio/n8n:latest followed by restarting the container.
The one thing to verify before clicking it: make sure your data volume is mounted correctly. If n8n’s data folder is mapped to a persistent volume on the host (not stored inside the container itself), your workflows and credentials survive the update fine. If not, they get wiped when the container is replaced.
In Hostinger’s panel, check your container’s volume settings before updating. You should see something like /home/user/.n8n mapped to a host path. If that’s there, you’re safe to click update.
If you’re unsure, export your workflows first via Settings > Export in the n8n UI. Takes 30 seconds and gives you a backup.