mirror of
https://github.com/offen/docker-volume-backup.git
synced 2024-11-10 08:40:27 +01:00
Frederik Ring
0504a92a1f
* Add option to run pre commands on arbitrary container * Correctly handle quoted args in commands * Provide defaults for test version arg * Allow filtering of target containers * Add documentation on exec commands * Use mysqldump in exec test * Add mysqldump section to recipes * Also run commands test in swarm mode * Use name instead of id * Add syntax highlighting * Add missing license headers
37 lines
944 B
YAML
37 lines
944 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
database:
|
|
image: mariadb:10.7
|
|
deploy:
|
|
restart_policy:
|
|
condition: on-failure
|
|
environment:
|
|
MARIADB_ROOT_PASSWORD: test
|
|
MARIADB_DATABASE: backup
|
|
labels:
|
|
- docker-volume-backup.exec-pre=/bin/sh -c 'mysqldump -ptest --all-databases > /tmp/volume/dump.sql'
|
|
- docker-volume-backup.exec-post=/bin/sh -c 'echo "post" > /tmp/volume/post.txt'
|
|
- docker-volume-backup.exec-label=test
|
|
volumes:
|
|
- app_data:/tmp/volume
|
|
|
|
backup:
|
|
image: offen/docker-volume-backup:${TEST_VERSION:-canary}
|
|
deploy:
|
|
restart_policy:
|
|
condition: on-failure
|
|
environment:
|
|
BACKUP_FILENAME: test.tar.gz
|
|
BACKUP_CRON_EXPRESSION: 0 0 5 31 2 ?
|
|
EXEC_LABEL: test
|
|
EXEC_FORWARD_OUTPUT: "true"
|
|
volumes:
|
|
- archive:/archive
|
|
- app_data:/backup/data:ro
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
|
|
volumes:
|
|
app_data:
|
|
archive:
|