-
-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
130 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
# Copyright 2020-2021 - Offen Authors <[email protected]> | ||
# SPDX-License-Identifier: Unlicense | ||
|
||
version: '3.8' | ||
|
||
services: | ||
minio: | ||
image: minio/minio:RELEASE.2020-08-04T23-10-51Z | ||
deploy: | ||
restart_policy: | ||
condition: on-failure | ||
environment: | ||
MINIO_ROOT_USER: test | ||
MINIO_ROOT_PASSWORD: test | ||
MINIO_ACCESS_KEY: test | ||
MINIO_SECRET_KEY: GMusLtUmILge2by+z890kQ | ||
entrypoint: /bin/ash -c 'mkdir -p /data/backup && minio server /data' | ||
volumes: | ||
- backup_data:/data | ||
|
||
backup: | ||
image: offen/docker-volume-backup:${TEST_VERSION:-canary} | ||
depends_on: | ||
- minio | ||
deploy: | ||
restart_policy: | ||
condition: on-failure | ||
environment: | ||
AWS_ACCESS_KEY_ID: test | ||
AWS_SECRET_ACCESS_KEY: GMusLtUmILge2by+z890kQ | ||
AWS_ENDPOINT: minio:9000 | ||
AWS_ENDPOINT_PROTO: http | ||
AWS_S3_BUCKET_NAME: backup | ||
BACKUP_FILENAME: test.tar.gz | ||
BACKUP_CRON_EXPRESSION: 0 0 5 31 2 ? | ||
BACKUP_RETENTION_DAYS: 7 | ||
BACKUP_PRUNING_LEEWAY: 5s | ||
volumes: | ||
- pg_data:/backup/pg_data:ro | ||
- /var/run/docker.sock:/var/run/docker.sock | ||
|
||
offen: | ||
image: offen/offen:latest | ||
healthcheck: | ||
disable: true | ||
deploy: | ||
labels: | ||
- docker-volume-backup.stop-during-backup=true | ||
replicas: 2 | ||
restart_policy: | ||
condition: on-failure | ||
|
||
pg: | ||
image: postgres:14-alpine | ||
environment: | ||
POSTGRES_PASSWORD: example | ||
labels: | ||
- docker-volume-backup.stop-during-backup=true | ||
volumes: | ||
- pg_data:/var/lib/postgresql/data | ||
deploy: | ||
restart_policy: | ||
condition: on-failure | ||
|
||
volumes: | ||
backup_data: | ||
name: backup_data | ||
pg_data: | ||
name: pg_data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
cd $(dirname $0) | ||
. ../util.sh | ||
current_test=$(basename $(pwd)) | ||
|
||
docker swarm init | ||
|
||
docker stack deploy --compose-file=docker-compose.yml test_stack | ||
|
||
while [ -z $(docker ps -q -f name=backup) ]; do | ||
info "Backup container not ready yet. Retrying." | ||
sleep 1 | ||
done | ||
|
||
sleep 20 | ||
|
||
docker exec $(docker ps -q -f name=backup) backup | ||
|
||
docker run --rm \ | ||
-v backup_data:/data alpine \ | ||
ash -c 'tar -xf /data/backup/test.tar.gz && test -f /backup/pg_data/PG_VERSION' | ||
|
||
pass "Found relevant files in untared backup." | ||
|
||
sleep 5 | ||
expect_running_containers "5" |