This repository has been archived by the owner on Nov 2, 2024. It is now read-only.
-
I have a working LXC container with vaultwarden. I only wonder if vaultwarden will be updated if this is easy or do I need to build the whole container again? And what do you use as a backup tool for backuping up the dbsqlite? |
Beta Was this translation helpful? Give feedback.
Answered by
tteck
Mar 24, 2022
Replies: 2 comments 1 reply
-
Why not use the update script? |
Beta Was this translation helpful? Give feedback.
1 reply
-
If you want to backup data cp -R /var/lib/vaultwarden/data data-backup If you want to restore data cp -R data-backup/* /var/lib/vaultwarden/data |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
tomdh76
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you want to backup data
cp -R /var/lib/vaultwarden/data data-backup
If you want to restore data
cp -R data-backup/* /var/lib/vaultwarden/data