-
-
Save xensbakuli/df4032d71152f10eb39cf8e5cb99d6b1 to your computer and use it in GitHub Desktop.
Revisions
-
somerongit renamed this gist
Jan 27, 2025 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
somerongit created this gist
Jan 27, 2025 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ ## Timescale DB ### Backup ``` docker exec -i postgres pg_dump -d postgres://user:password@postgres_service:5432/db | gzip > ./backup.sql.gz ``` ### Restore ``` gunzip backup.sql.gz docker exec -i postgres psql -d postgres://user:password@postgres_service:5432/db < backup.sql ```