After Upgrade Passwords are not Working

Hi There

I’ve deployed Metabase 0.29.0 over Docker and it was running well, but since 2 days I wasn’t able to connect to my databases as it is giving me Error:

"5000 Connection Timed out" on all the databases (MySQL, SQL Server, PostgreSQL).

Therefore I’ve decided to upgrade it to the latest stable release 0.30.0, and I’ve tested on a Test Env. and all worked.

Now after I migrated the existing H2 Database to the New Container, I’m unable to login using my existing Credentials, the error I’m getting is:

10-17 19:05:41 DEBUG metabase.middleware :: GET /api/session/properties 200 (14 ms) (1 DB calls). Jetty threads: 8/50 (10 busy, 1 idle, 0 queued)
10-17 19:05:41 DEBUG metabase.middleware :: GET /api/user/current 401 (706 µs) (0 DB calls).
"Unauthenticated"
10-17 19:05:50 DEBUG metabase.middleware :: POST /api/session 400 (11 ms) (1 DB calls).
{:errors {:password "did not match stored password"}}

My Process was:
docker cp metabase:/metabase.db /home/metabase
docker run -d -p 4000:3000 -v /home:/metabase -e "MB_DB_FILE=/metabase/metabase.db" --name newmetabase metabase/metabase

Stop the Container then Copy the existing Database to the New Path and Start the Container.