From 2f98bba1982e0676741f020f9435b7bb5843ed3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Proxymiity=20=E2=98=86?= Date: Thu, 29 Apr 2021 20:33:49 +0200 Subject: [PATCH] Renamed values according to the README --- Running-without-WAL-enabled.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Running-without-WAL-enabled.md b/Running-without-WAL-enabled.md index 7dab343..86eee9d 100644 --- a/Running-without-WAL-enabled.md +++ b/Running-without-WAL-enabled.md @@ -41,9 +41,9 @@ delete To turn WAL off, you need to start `vaultwarden` with `ENABLE_DB_WAL` variable set to `false`: ```bash -docker run -d --name bitwarden \ +docker run -d --name vaultwarden \ -e ENABLE_DB_WAL=false \ - -v /bw-data/:/data/ \ + -v /vw-data/:/data/ \ -p 80:80 \ vaultwarden/server:latest ``` @@ -51,7 +51,7 @@ Make sure to always start with this variable present as starting even once witho ## How to turn WAL on -Generally speaking you just start `bitarden_rs` without `ENABLE_DB_WAL` set to false and server will automatically enable WAL for you. You can verify this by running: +Generally speaking you just start `vaultwarden` without `ENABLE_DB_WAL` set to false and server will automatically enable WAL for you. You can verify this by running: ```bash sqlite3 db.sqlite3 'PRAGMA journal_mode'