From 42eec245b71e521557ea3742e98db42a0a0c5dd1 Mon Sep 17 00:00:00 2001 From: Gauthier Date: Mon, 6 Oct 2025 02:54:14 +0200 Subject: [PATCH] docs: add a warning about the new mount point in Postgres (#1968) * docs: add a warning about the new mount point in Postgres * fix: update path Co-authored-by: fallenbagel <98979876+fallenbagel@users.noreply.github.com> --------- Co-authored-by: fallenbagel <98979876+fallenbagel@users.noreply.github.com> --- docs/extending-jellyseerr/database-config.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/extending-jellyseerr/database-config.mdx b/docs/extending-jellyseerr/database-config.mdx index a95216782..df099187c 100644 --- a/docs/extending-jellyseerr/database-config.mdx +++ b/docs/extending-jellyseerr/database-config.mdx @@ -19,6 +19,10 @@ DB_LOG_QUERIES="false" # (optional) Whether to log the DB queries for debugging. ## PostgreSQL Options +:::caution +When migrating Postgres from version 17 to 18 in Docker, note that the data mount point has changed. Instead of using `/var/lib/postgresql/data`, the correct mount path is now `/var/lib/postgresql`. +::: + ### TCP Connection If your PostgreSQL server is configured to accept TCP connections, you can specify the host and port using the `DB_HOST` and `DB_PORT` environment variables. This is useful for remote connections where the server uses a network host and port.