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.
7 lines
No EOL
313 B
Bash
Executable file
7 lines
No EOL
313 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Path to your docker-compose files
|
|
COMPOSE_FILES="-f compose.yaml -f overrides/compose.mariadb.yaml -f overrides/compose.redis.yaml -f overrides/compose.https.yaml -f overrides/compose.backup-cron.yaml"
|
|
|
|
# Start the backup cron service
|
|
docker compose --env-file backup.env $COMPOSE_FILES up -d cron |