Missing Data and Customization after restoring docker volumes

Hi,
I was using the bitnami docker images without issues for a few years. I had to migrate from one server to another. I backed up the docker volumes using a container and tar the images. Restored these images as the same exact docker volume names to a different server. Ran the docker containers (same version latest:tag) on the new server. It is missing a lot of data and customizations.
Docker Commands used.

docker run -d --name mariadb -e ALLOW_EMPTY_PASSWORD=yes -e MARIADB_USER=bn_suitecrm -e MARIADB_DATABASE=bitnami_suitecrm --net suitecrm-tier
–volume mariadb_data:/bitnami bitnami/mariadb:latest

docker run -d --name suitecrm -p 8080:80 -p 8443:443 -e ALLOW_EMPTY_PASSWORD=yes -e SUITECRM_DATABASE_USER=bn_suitecrm -e SUITECRM_DATABASE_NAME=bitnami_suitecrm --net suitecrm-tier --volume suitecrm_data:/bitnami bitnami/suitecrm:latest.

I have tried a couple of times with and without [SUITECRM_SKIP_BOOTSTRAP=yes] but does not make a difference.
Any help and guidance on proper restore of the two containers (mariadb,suitecrm) is greatly appreciated.