Skip to content

DB dump restore

amazingguni edited this page May 6, 2019 · 1 revision
Backup:
docker exec -t -u postgres your-db-container pg_dumpall -c > dump_`date +%d-%m-%Y"_"%H_%M_%S`.sql

Restore:
cat your_dump.sql | docker exec -i your-db-container psql -Upostgres
Clone this wiki locally