Guido Stein
Guido Stein
Take a look at the official docs at [admin_manual/maintenance/backup](https://docs.nextcloud.com/server/latest/admin_manual/maintenance/backup.html). I also got some inspiration from [nextcloud-backup-erstellen-und-wiederherstellen-in-docker-umgebung](https://goneuland.de/nextcloud-backup-erstellen-und-wiederherstellen-in-docker-umgebung/) Perhaps something similar like that: ``` #!/bin/bash db_container="docker_db_1" db_backup_dir="/some_backup_destination_path/mariadb" app_container="docker_app_1" app_data_dir="/some_nextcloud_data_volume/nextcloud" app_backup_dir="/some_backup_destination_path/nextcloud" docker exec...