mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-02-05 00:29:40 +03:00
Installation instructions in README.md don't create persistent volume storage. #1967
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Zcehtro on GitHub (Jul 16, 2024).
Subject of the issue
The command
docker run -d --name vaultwarden -v /vw-data/:/data/ --restart unless-stopped -p 80:80 vaultwarden/server:latestdoes not create a persistent volume.Persistent storage is not implemented on creation of the container.
Deployment environment
Install method: docker image
Other relevant details: ran via powershell core on Windows 10
Steps to reproduce
Run command found on
README.md:Expected behaviour
Creates the container and creates the docker volume with the appropriate binding.
Actual behaviour
Creates the container and does not create the volume.
Troubleshooting data
Fixed command that worked for me is on powershell core on Windows 10:
Basically remove the forward slashes from
vw-data.