summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsupahgreg <supahgreg@users.noreply.github.com>2025-10-14 11:51:54 +0000
committersupahgreg <supahgreg@users.noreply.github.com>2025-10-14 11:51:54 +0000
commit1f9d788c872d65ef581503b01ffc5329bedf0cb1 (patch)
tree6bb4665f981dc539df296d1be07a91057f600c71
parente02f7d98da16a8257d6b8db72e01063b82e55d39 (diff)
PostgreSQL 18 backup wording tweak.
-rw-r--r--Installation-Guide.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/Installation-Guide.md b/Installation-Guide.md
index 72f12d3..00817cc 100644
--- a/Installation-Guide.md
+++ b/Installation-Guide.md
@@ -454,9 +454,12 @@ docker compose exec db /bin/bash \
-c "export PGPASSWORD=$TTRSS_DB_PASS \
&& pg_dump -U $TTRSS_DB_USER $TTRSS_DB_NAME" \
| gzip -9 > backup.sql.gz
+```
+
+The `backup` container uses the PostgreSQL 17 client, and isn't currently compatible with PostgreSQL 18+.
+Something like this following could be ran (from your Docker Compose directory or with `COMPOSE_PROJECT_NAME` defined properly) to back up a PostgreSQL 18 DB:
-# NOTE: The 'backup' container uses the PostgreSQL 17 client, and isn't currently compatible with PostgreSQL 18+.
-# Something like the following could be ran (typically from your Docker Compose directory) to back up a PostgreSQL 18 DB.
+```sh
source .env
docker run --rm \
--network "${COMPOSE_PROJECT_NAME:-$(basename "$PWD")}_default" \