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
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?