From de0e9b1f354b310c817716e9d49da75038fbec4e Mon Sep 17 00:00:00 2001 From: Joe Harrison <53116754+sudo-kraken@users.noreply.github.com> Date: Thu, 16 Oct 2025 06:36:56 +0100 Subject: [PATCH] fix: path in docs and compose for postgres 18 (#2049) --- compose.postgres.yaml | 2 +- docs/extending-jellyseerr/database-config.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compose.postgres.yaml b/compose.postgres.yaml index 148932b32..eee2758c7 100644 --- a/compose.postgres.yaml +++ b/compose.postgres.yaml @@ -31,6 +31,6 @@ services: ports: - '5432:5432' volumes: - - postgres:var/lib/postgresql/18/docker + - postgres:/var/lib/postgresql volumes: postgres: diff --git a/docs/extending-jellyseerr/database-config.mdx b/docs/extending-jellyseerr/database-config.mdx index 4763d7f88..e8b726b2b 100644 --- a/docs/extending-jellyseerr/database-config.mdx +++ b/docs/extending-jellyseerr/database-config.mdx @@ -20,7 +20,7 @@ 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/18/docker`. +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`. Refer to the [PostgreSQL Docker documentation](https://hub.docker.com/_/postgres/#pgdata) to learn how to migrate or opt out of this change. :::