aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/docs/self-hosting/docker.md4
1 files 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"