diff options
| author | Marius Nuennerich <marius@nuenneri.ch> | 2026-02-09 07:30:57 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-08 22:30:57 -0800 |
| commit | 360e3eb890e097e04599c775ffcad2b6aa02c607 (patch) | |
| tree | 6e96942fd4db1b05b85b4fe85b65ad09a78826d7 | |
| parent | fix(powershell): display search stderr (#3146) (diff) | |
| download | atuin-360e3eb890e097e04599c775ffcad2b6aa02c607.zip | |
docs: update how to use Docker to self-host (#3148)
The server command changed with the switch to a separate server binary.
While here also update the documented postgres version.
<!-- 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
| -rw-r--r-- | docs/docs/self-hosting/docker.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/docs/self-hosting/docker.md b/docs/docs/self-hosting/docker.md index 57f5ca0c..77a61459 100644 --- a/docs/docs/self-hosting/docker.md +++ b/docs/docs/self-hosting/docker.md @@ -13,7 +13,7 @@ There is a supplied docker image to make deploying a server as a container easie CONFIG="$HOME/.config/atuin" mkdir "$CONFIG" chown 1000:1000 "$CONFIG" -docker run -d -v "$CONFIG:/config" ghcr.io/atuinsh/atuin:<LATEST TAGGED RELEASE> server start +docker run -d -v "$CONFIG:/config" ghcr.io/atuinsh/atuin:<LATEST TAGGED RELEASE> start ``` ## Docker Compose @@ -36,7 +36,7 @@ services: atuin: restart: always image: ghcr.io/atuinsh/atuin:<LATEST TAGGED RELEASE> - command: server start + command: start volumes: - "./config:/config" ports: @@ -49,7 +49,7 @@ services: depends_on: - db db: - image: postgres:14 + image: postgres:18 restart: unless-stopped volumes: # Don't remove permanent storage for index database files! - "./database:/var/lib/postgresql/data/" |
