mirror of
https://github.com/ViViDboarder/docker-restic-cron.git
synced 2024-11-15 01:36:37 +00:00
8 lines
133 B
Bash
8 lines
133 B
Bash
|
set -e
|
||
|
|
||
|
# Pretend we have some database
|
||
|
echo "insert foo into bar;" > /mydb.txt
|
||
|
|
||
|
# Let's dump that db
|
||
|
cat /mydb.txt > /data/dump.txt
|