Skip to content

Backups

Grigory Efimov edited this page Dec 13, 2024 · 1 revision

All data is stored in the folder STORAGE_DIR="./storage".
It is sufficient to set up a backup of the data in this folder.
It is recommended to stop the environment during the backup.

Here is an example backup script:

make stop
rsync -a ./storage/ /backup/$(date +%Y%m%d-%H%M%S)/
make start
Clone this wiki locally