mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-07-16 05:34:10 +03:00
Why can't I find my database file? #937
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 @arieslee on GitHub (Feb 19, 2021).
my docker-compose.yml
However, the database file cannot be found in the
datadirectory or/home/ bw-datadirectoryThe two directories are empty
@raphaelcoutu commented on GitHub (Feb 19, 2021):
The database file is located into the /data folder in the container
@arieslee commented on GitHub (Feb 19, 2021):
I need to change this item, don't I
I've modified it, but I can't start compose
@raphaelcoutu commented on GitHub (Feb 19, 2021):
The left part is relative to your computer (host) and the right part is the path within the container. You can't change the right part and it has to be absolute ("/data" and not "./data"). The /data folder is at the root of the container.
@arieslee commented on GitHub (Feb 19, 2021):
OK,thank you~