From 360e3eb890e097e04599c775ffcad2b6aa02c607 Mon Sep 17 00:00:00 2001 From: Marius Nuennerich Date: Mon, 9 Feb 2026 07:30:57 +0100 Subject: 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. ## 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs') 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: server start +docker run -d -v "$CONFIG:/config" ghcr.io/atuinsh/atuin: start ``` ## Docker Compose @@ -36,7 +36,7 @@ services: atuin: restart: always image: ghcr.io/atuinsh/atuin: - 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/" -- cgit v1.3.1