mirror of
https://github.com/offen/docker-volume-backup.git
synced 2024-11-10 08:40:27 +01:00
43 lines
1.0 KiB
Bash
43 lines
1.0 KiB
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
cd $(dirname $0)
|
||
|
. ../util.sh
|
||
|
current_test=$(basename $(pwd))
|
||
|
|
||
|
docker network create test_network
|
||
|
docker volume create app_data
|
||
|
|
||
|
LOCAL_DIR=$(mktemp -d)
|
||
|
|
||
|
docker run -d -q \
|
||
|
--name offen \
|
||
|
--network test_network \
|
||
|
-v app_data:/var/opt/offen/ \
|
||
|
offen/offen:latest
|
||
|
|
||
|
sleep 5
|
||
|
|
||
|
docker run --rm -q \
|
||
|
--network test_network \
|
||
|
-v app_data:/backup/app_data \
|
||
|
-v $LOCAL_DIR:/archive \
|
||
|
-v /var/run/docker.sock:/var/run/docker.sock \
|
||
|
--env BACKUP_COMPRESSION=gz \
|
||
|
--env GZIP_PARALLELISM=0 \
|
||
|
--env BACKUP_FILENAME='test.{{ .Extension }}' \
|
||
|
--entrypoint backup \
|
||
|
offen/docker-volume-backup:${TEST_VERSION:-canary}
|
||
|
|
||
|
tmp_dir=$(mktemp -d)
|
||
|
tar -xvf "$LOCAL_DIR/test.tar.gz" -C $tmp_dir
|
||
|
if [ ! -f "$tmp_dir/backup/app_data/offen.db" ]; then
|
||
|
fail "Could not find expected file in untared archive."
|
||
|
fi
|
||
|
pass "Found relevant files in untared local backup."
|
||
|
|
||
|
# This test does not stop containers during backup. This is happening on
|
||
|
# purpose in order to cover this setup as well.
|
||
|
expect_running_containers "1"
|