Files
hassio-addons/hass_backup_s3_Other/README.md
2025-12-10 12:30:13 +01:00

25 lines
754 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# MinIO Backup Add-on
This add-on automatically creates Home Assistant backups, stores them on a MinIO
(S3-compatible) server, and manages retention for daily and monthly backups.
### Features
- Automatic daily and monthly backups
- Retention control (default: 3 daily, 12 monthly)
- Optional AES-256 encryption
- Upload to MinIO / S3-compatible servers
- Uses Supervisor API for snapshot creation
### Decryption (if encryption is enabled)
openssl enc -d -aes-256-cbc -pbkdf2 -in backup.tar.enc -out backup.tar -k "PASSWORD"
### Configuration options
- `minio_endpoint` MinIO server URL
- `minio_access_key`
- `minio_secret_key`
- `minio_bucket`
- `daily_to_keep`
- `monthly_to_keep`
- `encryption_enabled` true/false
- `encryption_password`