Skip to content
This repository has been archived by the owner on Feb 3, 2023. It is now read-only.

Latest commit

 

History

History
10 lines (5 loc) · 277 Bytes

README.md

File metadata and controls

10 lines (5 loc) · 277 Bytes

🚖 CAB

Coronavirus Answering Bot 🚕

Postgress SQL backup/restore

dump data: docker exec -t your-db-container pg_dumpall -c -U postgres > dump_date +%d-%m-%Y""%H%M_%S.sql

restore data: cat your_dump.sql | docker exec -i your-db-container psql -U postgres