Lost data after updating to version 1.123.2. Data reverts to version 11/28/2025
Today I just updated n8n to version 1.123.2 using Docker Compose. However, after the update was successful, all my data returned to 11/28/2025.
Can you tell me if there is any way to retrieve the previous data?
Thanks
Information on your n8n setup
- n8n version: 1.123.2
- Database (default: SQLite): SQLite
- n8n EXECUTIONS_PROCESS setting (default: own, main):
- Running n8n via (Docker, npm, n8n cloud, desktop app): Docker, VPS
- Operating system: Ubuntu
Hey @thanhdp1305 !
What looks like the output of docker volume ls command ?
Maybe a mix of images in your docker compose file… can you share that as well(hide sensitive info).
Recovery only if you have some backup…
Cheers!
Hi Parintele_Damaskin,
I updated from 1.121.0 to 1.123.2
Output of docker volume ls
This is my current docker-compose.yml:
n8n:
image: docker.n8n.io/n8nio/n8n
restart: always
ports:
- "127.0.0.1:5678:5678"
labels:
- traefik.enable=true
- traefik.http.routers.n8n.rule=Host(`${SUBDOMAIN}.${DOMAIN_NAME}`)
- traefik.http.routers.n8n.tls=true
- traefik.http.routers.n8n.entrypoints=web,websecure
- traefik.http.routers.n8n.tls.certresolver=mytlschallenge
- traefik.http.middlewares.n8n.headers.SSLRedirect=true
- traefik.http.middlewares.n8n.headers.STSSeconds=315360000
- traefik.http.middlewares.n8n.headers.browserXSSFilter=true
- traefik.http.middlewares.n8n.headers.contentTypeNosniff=true
- traefik.http.middlewares.n8n.headers.forceSTSHeader=true
- traefik.http.middlewares.n8n.headers.SSLHost=${DOMAIN_NAME}
- traefik.http.middlewares.n8n.headers.STSIncludeSubdomains=true
- traefik.http.middlewares.n8n.headers.STSPreload=true
- traefik.http.routers.n8n.middlewares=n8n@docker
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
volumes:
traefik_data:
external: true
n8n_data:
external: true
This command:
docker volume inspect n8n_data
thenn ou can then ls the Mountpoint path toseeie the actual database.sqlite, config, etc. that n8n is using… you can check there for timestamps and see if is there.