A quick list of commands (in order) to use when we are trying to restore database from one environment to another.
> apt update
> apt-get install postgresql-client
> pg_dump -h <host> -p 5432 -U <username> -d <db> > db.sql
> copy db.sql in right container