I deploy using docker n8n,The startup parameters are as follows
docker volume create n8n_data
docker run -d --name n8n_v1 -p 5678:5678 -e N8N_SECURE_COOKIE=false -v n8n_data:/home/node/.n8n docker.n8n.io/n8nio/n8n
n8n version
Version 1.100.1
docker n8n version
root@cloud:/var/lib/docker/volumes/n8n_data/_data# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
docker.n8n.io/n8nio/n8n latest 8b42ec21f2d0 2 weeks ago 1.01GB
Then I added a lot of nodes, such as http,code ,ai agent node …
Since I want to increase the parameters of n8n when docker starts, I first export the node. The default exported configuration file is My workflow.json
But I found that the export only reports the nodes and does not include specific node operations, such as code,http url …
I think the export feature has a serious bug
This caused me to lose all the code I had written, and have no version to restore. Please help me how to restore the configured nodes ,
Thank you so much