Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 299 Bytes

README.md

File metadata and controls

10 lines (9 loc) · 299 Bytes

ol-analytical-research

Dump a docker postgres db to a file

docker exec -t <container> pg_dumpall -c -U <user> | gzip > ./path/dump_all.gz

Restore a backup to a docker postgres db

gunzip < ./path/dump_all.gz | docker exec -i <container> psql -U <user> -d <database>