Update docker.md

This commit is contained in:
Ellie Huxtable 2023-09-01 15:21:06 +01:00 committed by GitHub
parent fc2c473c6c
commit 6d3b14b123
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"