mirror of
https://github.com/lobaro/restic-backup-docker.git
synced 2026-03-27 17:02:45 +00:00
8 lines
140 B
Bash
8 lines
140 B
Bash
#!/bin/sh
|
|
|
|
echo "Starting Backup"
|
|
|
|
restic backup /data --tag=${RESTIC_TAG?"Missing environment variable RESTIC_TAG"} >> /var/log/cron.log
|
|
|
|
|