From a8e3598edbfbab7aab12acb664ca35a87dee1038 Mon Sep 17 00:00:00 2001 From: smilerz Date: Thu, 9 Nov 2023 18:00:55 -0600 Subject: [PATCH] changed restore command to code block in pgbackup.md --- docs/apps/pgbackup.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/apps/pgbackup.md b/docs/apps/pgbackup.md index 08772c90c0..dde889c461 100644 --- a/docs/apps/pgbackup.md +++ b/docs/apps/pgbackup.md @@ -36,4 +36,6 @@ If you are using postgres docker container, add a dependency to the container If the database already exists, drop it. Create a database -`docker exec -it /bin/sh -c "zcat /storage/backups/postgres/last/-latest.sql.gz | psql --username= --dbname= -W"` +```bash +docker exec -it /bin/sh -c "zcat /storage/backups/postgres/last/-latest.sql.gz | psql --username= --dbname= -W" +```