Lost some workflows after upgrading to v1.105.4 (Docker, SQLite, AWS Linux)

Describe the problem/error/question

Hi everyone,

I recently upgraded my self-hosted n8n instance from v1.90 to v1.105.4.
Environment details:

  • Hosting: AWS (Amazon Linux 2023)

  • Deployment: Docker

  • Database: SQLite (database.sqlite file)

After the upgrade, I noticed that some of my workflows are missing.
Strangely, not all workflows are gone—just a few of them disappeared.

I’ve checked the database.sqlite file directly, but I couldn’t find any trace of the missing workflows there either. It’s like they were completely wiped.

Has anyone encountered something similar during upgrades? Any suggestions on what might have happened, or if there’s any way to recover them?

What is the error message (if any)?

Please share your workflow

(Select the nodes on your canvas and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow.)

Share the output returned by the last node

Information on your n8n setup

  • n8n version: v1.105.4
  • Database (default: SQLite): SQLite
  • n8n EXECUTIONS_PROCESS setting (default: own, main): Default
  • Running n8n via (Docker, npm, n8n cloud, desktop app): Docker (self-host)
  • Operating system: Amazon Linux 2023

Below is my Docker-compose file

services:
  n8n:
    image: docker.n8n.io/n8nio/n8n:latest
    restart: always
    ports:
      - "127.0.0.1:5678:5678"
    environment:
      - N8N_HOST=${SUBDOMAIN}.${DOMAIN_NAME}
      - N8N_PORT=5678
      - N8N_PROTOCOL=https
      - NODE_ENV=production
      - WEBHOOK_URL=https://${SUBDOMAIN}.${DOMAIN_NAME}/
      - GENERIC_TIMEZONE=${GENERIC_TIMEZONE}
    volumes:
      - n8n_data:/home/node/.n8n
      - ./local-files:/files
      - ./custom-certificates:/opt/custom-certificates

volumes:
  n8n_data:
    external: true

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