Question about data migration between two servers

Good evening, I need to move the stjnode data to another server, my idea is to use rsync, as far as I can understand I must migrate these two folders according to my configuration:

docker run -d --restart unless-stopped --stop-timeout 300 -p 28967:28967 -p 14002:14002 -e WALLET=“0x???” -e EMAIL="¿¿¿¿¿¿¿¿@hotmail.com" -e ADDRESS=“xxx.yyyyyy.net:28967” -e STORAGE=“1TB” --mount type=bind,source="/root/storage-files",destination=/app/identity --mount type=bind,source="/home/storage",destination=/app/config --name storagenode storjlabs/storagenode:latest

Folders to migrate with rsync on my new docker:

/root/storage-files
/home/storage

my question what is: destination=/app/identity and destination=/app/config ?
docker generates it alone ?, or where do I find that data?

Any folder that I am missing to migrate?

Thank you so much

These are the directories inside the container where the other directories get mounted to.

1 Like