Skip to content

Commit de0e9b1

Browse files
authored
fix: path in docs and compose for postgres 18 (#2049)
1 parent d95ccca commit de0e9b1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compose.postgres.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ services:
3131
ports:
3232
- '5432:5432'
3333
volumes:
34-
- postgres:var/lib/postgresql/18/docker
34+
- postgres:/var/lib/postgresql
3535
volumes:
3636
postgres:

docs/extending-jellyseerr/database-config.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ DB_LOG_QUERIES="false" # (optional) Whether to log the DB queries for debugging.
2020
## PostgreSQL Options
2121

2222
:::caution
23-
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`.
23+
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`.
2424
Refer to the [PostgreSQL Docker documentation](https://hub.docker.com/_/postgres/#pgdata) to learn how to migrate or opt out of this change.
2525
:::
2626

0 commit comments

Comments
 (0)