From 62e3f248ea5dc5efcb253a0233d13b07ee00cb0f Mon Sep 17 00:00:00 2001 From: Silviu Vulcan <2470335+filviu@users.noreply.github.com> Date: Fri, 13 Feb 2026 00:04:30 +0200 Subject: fix(docs): Update Postgres volume path in Docker as required by pg18 (#3174) Postgresql requires a different volume path for docker since version 18, see https://hub.docker.com/_/postgres#pgdata ## Checks - [x] I am happy for maintainers to push small adjustments to this PR, to speed up the review cycle - [x] I have checked that there are no existing pull requests for the same thing --- docs/docs/self-hosting/docker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/self-hosting/docker.md b/docs/docs/self-hosting/docker.md index 77a61459..df8af41f 100644 --- a/docs/docs/self-hosting/docker.md +++ b/docs/docs/self-hosting/docker.md @@ -52,7 +52,7 @@ services: image: postgres:18 restart: unless-stopped volumes: # Don't remove permanent storage for index database files! - - "./database:/var/lib/postgresql/data/" + - "./database:/var/lib/postgresql/" environment: POSTGRES_USER: ${ATUIN_DB_USERNAME} POSTGRES_PASSWORD: ${ATUIN_DB_PASSWORD} -- cgit v1.3.1