mirror of
https://github.com/ViViDboarder/docker-restic-cron.git
synced 2024-11-15 01:36:37 +00:00
8 lines
114 B
Bash
Executable File
8 lines
114 B
Bash
Executable File
#! /bin/bash
|
|
set -e
|
|
|
|
cd /data
|
|
|
|
# Dump the SQLite database
|
|
sqlite3 test_database.db ".backup test_database.db.bak"
|