A secure and automated backup system for Apache running in Docker containers. This setup performs daily volume backups, stores them in Amazon S3 with timestamped filenames, and retains only the latest 7 backups β ensuring reliable, consistent, and space-efficient offsite storage.
- π Daily automated backups at a configurable time via cron.
- βοΈ S3 integration with timestamped archives.
- π§Ή Retention policy: Keeps only the latest 7 backups.
- π Encryption-ready design for secure data handling.
- β Containerized solution using Docker Compose.
- π Lightweight and extensible backup container using AWS CLI.
apache-docker-s3-backup/
βββ apache-compose.yml # Docker Compose configuration
βββ backup.sh # Backup + upload + cleanup script
βββ entrypoint.sh # Dynamically configures cron based on environment
βββ crontab.txt # (Deprecated) Cron schedule (now dynamically generated)
βββ .env # AWS credentials and configuration
git clone https://github.com/fvergaracl/apache-docker-s3-backup.git
cd apache-docker-s3-backup
Create a .env
file with your AWS credentials and backup settings:
AWS_ACCESS_KEY_ID=your_aws_access_key_id
AWS_SECRET_ACCESS_KEY=your_aws_secret_access_key
AWS_DEFAULT_REGION=your_aws_region # e.g. us-east-1
# S3 Bucket for backups
S3_BUCKET=s3://your-backup-bucket-name
# Encryption settings (optional)
ENCRYPTION_PASS=your_encryption_pass
# Cron timing settings
CRON_MIN=0 # Minute (0-59)
CRON_HOUR=0 # Hour (0-23)
β οΈ Important: Add.env
to.gitignore
to prevent accidental leaks.
Modify CRON_HOUR
and CRON_MIN
in .env
to change the execution time.
chmod +x backup.sh entrypoint.sh
docker compose -f apache-compose.yml up -d
- Apache volume is mounted in both the Apache container and the backup container.
- A cron job runs daily at the configured time (
CRON_HOUR:CRON_MIN
) to:- Compress
/data
into a.tar.gz
file with a timestamp. - Upload it to the specified S3 bucket.
- Automatically delete old backups, keeping only the most recent 7.
- Compress
- Logs are stored inside the backup container for debugging.
Area | Recommendation |
---|---|
AWS Credentials | Use .env (never commit keys). Prefer IAM roles if running in AWS EC2/ECS. |
IAM Permissions | Use a minimal policy: PutObject , ListBucket , DeleteObject for the specific bucket. |
Encryption | Enable S3 bucket encryption (SSE-S3 or SSE-KMS). Optionally, encrypt archives before upload using openssl or gpg . |
Container Isolation | Avoid exposing the backup container externally. Limit permissions. |
Script Hardening | Validate uploads, sanitize file listings before deletion, restrict file permissions. |
Restoration Testing | Regularly test restoration from S3 to ensure backups are usable. |
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:ListBucket",
"s3:DeleteObject"
],
"Resource": [
"arn:aws:s3:::your-backup-bucket-name",
"arn:aws:s3:::your-backup-bucket-name/*"
]
}
You can view cron output using:
docker logs apache-backup
Task | How |
---|---|
Backup Time | Modify CRON_HOUR and CRON_MIN in .env . |
Retention Count | Change head -n -7 in backup.sh to a different value. |
Backup Source | Change the /data path if you're backing up a different volume. |
- π© Add notification hooks (email, Slack, etc.) after successful/failed backups.
- π Add GPG encryption with secure passphrase storage.
- π Add restore script for easy disaster recovery.
- π Add healthcheck monitoring or metrics reporting.
MIT License β feel free to use, fork, and adapt.
Pull requests and ideas are welcome! Help improve this simple but powerful backup system.