You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.4 KiB
YAML

---
# the aws region. For minio this will always be us-east-1.
docker_backup_aws_s3_region: "us-east-1"
# the name of the bucket in minio or s3
docker_backup_aws_s3_bucket: "backups"
# put backups locally in this directory.
docker_backup_host_backup_directory: "/tmp"
# the url of the minio server.
docker_backup_aws_s3_url: "http://127.0.0.1:9000"
docker_backup_aws_s3_aws_access_key: "83meItmzcEgb1NdasSgl"
docker_backup_aws_s3_aws_secret_key: "lwdAJ60gMkcZxRZCHsC6CsdPw63Xuds6h6mksnSz"
docker_backup_aws_s3_permissions: []
docker_backup_aws_s3_encrypt: off
# forces a revert to the volume.
docker_backup_restore_force: false
# specify docker_backup_restore_latest_s3_key true to automatically determine the latest
# backup in the s3 backup. The format which is expected has the prefix of volume_name/volume_name_*
# this is the format the the "docker_s3_backup" role updloads them with.
docker_backup_restore_latest_s3_key: false
docker_backup_s3_volume:
name: ""
s3_key: "" # optional
# docker_backup_s3_volume:
# name: linkding
# s3_key: "linkding_data/linkding_data-2022-09-01T21:32:54Z.tar.gz"
# dynamically find the latest linkding_data backup.
# docker_backup_restore_latest_s3_key: true
# docker_backup_s3_restores:
# - volume_name: "linkding_data"
# fail on no S3 backups causes the task to fail if there are no s3 backups.
# setting this to true will cause the restore task to end early if there are no backups.
docker_backup_fail_on_no_s3_backups: true