diff options
| author | Silviu Vulcan <2470335+filviu@users.noreply.github.com> | 2026-02-13 00:04:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-12 14:04:30 -0800 |
| commit | 62e3f248ea5dc5efcb253a0233d13b07ee00cb0f (patch) | |
| tree | fb460aba32e2ae7aa434b4aa313b81ab525471d1 /docs | |
| parent | chore(deps): bump time + bytes (#3175) (diff) | |
| download | atuin-62e3f248ea5dc5efcb253a0233d13b07ee00cb0f.zip | |
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
<!-- Thank you for making a PR! Bug fixes are always welcome, but if
you're adding a new feature or changing an existing one, we'd really
appreciate if you open an issue, post on the forum, or drop in on
Discord -->
## 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
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/docs/self-hosting/docker.md | 2 |
1 files changed, 1 insertions, 1 deletions
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} |
