backup-script/nextcloud.sh
JuliusFreudenberger 59306899e7 Remove database dump from nextcloud hook
The database will be backed up from the volume directly
2022-03-01 15:14:36 +01:00

7 lines
151 B
Bash

pre() {
docker exec -u 33 nextcloud_app_1 ./occ maintenance:mode --on
}
post() {
docker exec -u 33 nextcloud_app_1 ./occ maintenance:mode --off
}