mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-23 00:05:09 +00:00
- Introduced backup scripts for S3 and Google Drive, including cron job setup for automated backups. - Added email configuration script to set up SMTP settings for ERPNext. - Created environment files for backup configurations (backup.env, gdrive-backup.env, email.env). - Updated docker-compose files to support new backup services and configurations.
8 lines
No EOL
285 B
Bash
8 lines
No EOL
285 B
Bash
# Backup schedule in cron format (every 6 hours by default)
|
|
BACKUP_CRONSTRING=@every 6h
|
|
|
|
# Optional: AWS S3 configuration if you want to push backups to S3
|
|
# AWS_ACCESS_KEY_ID=your_access_key
|
|
# AWS_SECRET_ACCESS_KEY=your_secret_key
|
|
# S3_BUCKET=your_bucket_name
|
|
# S3_REGION=your_region |