Workflows are 5 days out of date

My n8n workflows are showing versions that are 5 days out of date.

This started happening after I tried to install Python using Easypanel, via the Dockerfile with the following content:

FROM n8nio/n8n:1.106.3

# Install python3
USER root
RUN apk add --update python3 py3-pip

USER node
RUN python3 -m pip install --user --break-system-packages pipx

# Add the path of the pipx installation to PATH
ENV PATH="/home/node/.local/bin:$PATH"

Can anyone help me recover the updated workflow versions?

Information on your n8n setup

  • n8n version: n8nio/n8n:1.106.3
  • Database (default: SQLite): .Postgresdb
  • n8n EXECUTIONS_PROCESS setting (default: own, main): main
  • Running n8n via (Docker, npm, n8n cloud, desktop app): Easypanel (docker)
  • Operating system: Ubuntu 22.04

Hey @Mauro_Ricardo_da_Sil hope all is good.

If you wish to use the latest one, change the

FROM n8nio/n8n:1.106.3

to

FROM n8nio/n8n:latest

then build the image again and restart your compose infra or stop and run your contained manually if started with docker run command.

Thank you for your reply.

The problem is that all the changes I made to the workflows in the last five days were lost.

Oh I see, I misinterpreted your original message. Likely this is due to how you keep your data. Do you use docker compose or do you run docker with docker run?

I installed the N8N via Easypanel

Sorry, I only know that this is some sort of a docker-based managed service. Have you tried asking Easypanel people about this?

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.