From 6b4c72e89bbbcd4cfdb26358f90bf576fc0f398f Mon Sep 17 00:00:00 2001 From: Marc Michalsky Date: Sun, 14 Feb 2021 20:58:33 +0100 Subject: [PATCH] update example_settings.yml --- example_settings.yml | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/example_settings.yml b/example_settings.yml index 45698c9..65bbd9a 100644 --- a/example_settings.yml +++ b/example_settings.yml @@ -1,17 +1,22 @@ nextcloud_containers: - instance1: # name like Nextcloud container instance - mysql_password: "password" - backup_folder: "/full/path/to/directory/" - compose_file_path: "/full/path/to/directory/" + cloud1: # Name it after your Nextcloud installation + app_container: "nextcloud-app-container-name" + db_container: "nextcloud-database-container-name" + mysql_root_password: "password" + backup_dir: "/full/path/to/directory/" + docker_compose_file_path: "/full/path/to/docker-compose.yaml" + number_of_backups: 5 - instance2: # name like Nextcloud container instance - mysql_password: "password" - backup_folder: "/full/path/to/directory/" - compose_file_path: "/full/path/to/directory/" + cloud2: # Name it after your Nextcloud installation + app_container: "nextcloud-app-container-name" + db_container: "nextcloud-database-container-name" + mysql_root_password: "password" + backup_dir: "/full/path/to/directory/" + docker_compose_file_path: "/full/path/to/docker-compose.yaml" + number_of_backups: 5 log: - text: true - json: false - log_file: "/full/path/to/file.log" + logging: true + log_dir: "/path/for/logging/"