From fce3a3ea2082a244135d0360edbd8399adec1efe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferdinand=20M=C3=BCtsch?= Date: Wed, 19 Jan 2022 15:21:26 +0100 Subject: [PATCH] docs: update docker run command to ghcr [ci skip] --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 729d637..ccb0080 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,8 @@ $ docker run -d \ -p 3000:3000 \ -e "WAKAPI_PASSWORD_SALT=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w ${1:-32} | head -n 1)" \ -v wakapi-data:/data \ - --name wakapi n1try/wakapi + --name wakapi \ + ghcr.io/muety/wakapi:latest ``` **Note:** By default, SQLite is used as a database. To run Wakapi in Docker with MySQL or Postgres, see [Dockerfile](https://github.com/muety/wakapi/blob/master/Dockerfile) and [config.default.yml](https://github.com/muety/wakapi/blob/master/config.default.yml) for further options.