mirror of
https://github.com/offen/docker-volume-backup.git
synced 2024-11-13 02:00:27 +01:00
Frederik Ring
c9ebb9e14e
* Allow mounting of config directory for multiple schedules * Add docs for conf.d feature * Fix behavior on multiple files * Define default case first in entrypoint script
27 lines
490 B
Bash
Executable File
27 lines
490 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
|
|
mkdir -p local
|
|
|
|
docker-compose up -d
|
|
|
|
# sleep until a backup is guaranteed to have happened on the 1 minute schedule
|
|
sleep 100
|
|
|
|
docker-compose down --volumes
|
|
|
|
if [ ! -f ./local/conf.tar.gz ]; then
|
|
echo "[TEST:FAIL] Config from file was not used."
|
|
exit 1
|
|
fi
|
|
echo "[TEST:PASS] Config from file was used."
|
|
|
|
if [ -f ./local/never.tar.gz ]; then
|
|
echo "[TEST:FAIL] Unexpected file was found."
|
|
exit 1
|
|
fi
|
|
echo "[TEST:PASS] Unexpected cron did not run."
|