mirror of
https://github.com/lobaro/restic-backup-docker.git
synced 2026-05-30 02:25:24 +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
|
|
|
|
|