gitea/abra.sh
Cassowary 9d44d9e61c add [repository.upload] support to the configuration
Note: Requires updates to config file so add this to the release notes.
2023-12-07 18:01:05 -08:00

15 lines
235 B
Bash

export APP_INI_VERSION=v15
export DOCKER_SETUP_SH_VERSION=v1
abra_backup_app() {
_abra_backup_dir "app:/var/lib/gitea"
}
abra_backup_db() {
_abra_backup_mysql "db" "gitea"
}
abra_backup() {
abra_backup_app && abra_backup_db
}