From 6d3b14b123e287be0a06dd7e68dacca507480b94 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Fri, 1 Sep 2023 15:21:06 +0100 Subject: [PATCH] Update docker.md --- docs/docs/self-hosting/docker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/self-hosting/docker.md b/docs/docs/self-hosting/docker.md index 624783fe..b9acff05 100644 --- a/docs/docs/self-hosting/docker.md +++ b/docs/docs/self-hosting/docker.md @@ -3,7 +3,7 @@ There is a supplied docker image to make deploying a server as a container easier. ```sh -docker run -d -v "$HOME/.config/atuin:/config" ghcr.io/ellie/atuin:latest server start +docker run -d -v "$HOME/.config/atuin:/config" ghcr.io/atuinsh/atuin:latest server start ``` # Docker Compose @@ -25,7 +25,7 @@ version: '3.5' services: atuin: restart: always - image: ghcr.io/ellie/atuin:main + image: ghcr.io/atuinsh/atuin:main command: server start volumes: - "./config:/config"