vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit e4894524e45ce478f8e2439cd05b6342696615d1
parent e7f083dee9743bfe4937f5c8149fa9d8383edb96
Author: Timon Klinkert <83671398+DenuxPlays@users.noreply.github.com>
Date:   Mon, 26 Jun 2023 00:31:40 +0200

updated docker run command
Diffstat:
MREADME.md | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md @@ -38,7 +38,7 @@ Pull the docker image and mount a volume from the host for persistent storage: ```sh docker pull vaultwarden/server:latest -docker run -d --name vaultwarden -v /vw-data/:/data/ -p 80:80 vaultwarden/server:latest +docker run -d --name vaultwarden -v /vw-data/:/data/ --restart unless-stopped -p 80:80 vaultwarden/server:latest ``` This will preserve any persistent data under /vw-data/, you can adapt the path to whatever suits you.