Full backup and restore

Hello,
I have a running oracle 19 docker container with a volume to keep data.
I need to move the container to another host.
According to what I have been able to find in the documents on the web, the process is:
1- stop the container ( docker stop )
2- commit the image ( docker commit )
3- save ( docker save … )
4- load image ( docker load… )
5- docker run … ( here if i use the same original command got errors ) so i did ( docker run nameofimage )to recreate image.
However, after doing this process, if I use docker inspect in both images they do not have the same configuration, for example in the volume.

I am newbie on docker, thanks any help!