0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-09-29 22:19:00 +02:00

Renamed values according to the README

Proxymiity ☆ 2021-04-29 20:33:49 +02:00
parent dbe1c0e788
commit 2f98bba198

@ -41,9 +41,9 @@ delete
To turn WAL off, you need to start `vaultwarden` with `ENABLE_DB_WAL` variable set to `false`: To turn WAL off, you need to start `vaultwarden` with `ENABLE_DB_WAL` variable set to `false`:
```bash ```bash
docker run -d --name bitwarden \ docker run -d --name vaultwarden \
-e ENABLE_DB_WAL=false \ -e ENABLE_DB_WAL=false \
-v /bw-data/:/data/ \ -v /vw-data/:/data/ \
-p 80:80 \ -p 80:80 \
vaultwarden/server:latest 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 ## 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 ```bash
sqlite3 db.sqlite3 'PRAGMA journal_mode' sqlite3 db.sqlite3 'PRAGMA journal_mode'