2022-12-22 19:18:27 +00:00
|
|
|
# vim: ft=yaml.ansible
|
2022-12-21 21:25:10 +00:00
|
|
|
---
|
|
|
|
- name: Deploy Restic with Docker Compose
|
|
|
|
docker_compose:
|
|
|
|
project_name: restic
|
|
|
|
pull: true
|
|
|
|
definition:
|
|
|
|
version: '3.8'
|
|
|
|
|
|
|
|
services:
|
2022-12-23 17:46:44 +00:00
|
|
|
backup:
|
2022-12-21 21:25:10 +00:00
|
|
|
image: "mazzolino/restic:{{ services.restic.version }}"
|
|
|
|
restart: unless-stopped
|
|
|
|
environment:
|
2022-12-23 15:57:37 +00:00
|
|
|
RUN_ON_STARTUP: 'false'
|
2022-12-21 21:25:10 +00:00
|
|
|
BACKUP_CRON: '0 30 3 * * *'
|
|
|
|
RESTIC_REPOSITORY: "b2:{{ secrets.restic.b2.bucket }}:{{ services.restic.repo }}"
|
2022-12-22 19:18:27 +00:00
|
|
|
RESTIC_PASSWORD: "{{ secrets.restic.repo_pw }}"
|
2022-12-21 21:25:10 +00:00
|
|
|
RESTIC_BACKUP_SOURCES: /mnt/volumes
|
|
|
|
RESTIC_BACKUP_ARGS: >-
|
|
|
|
--tag docker-volumes
|
|
|
|
--exclude '*.tmp'
|
|
|
|
--verbose
|
|
|
|
RESTIC_FORGET_ARGS: >-
|
|
|
|
--keep-last 10
|
|
|
|
--keep-daily 7
|
|
|
|
--keep-weekly 5
|
|
|
|
--keep-monthly 12
|
|
|
|
B2_ACCOUNT_ID: "{{ secrets.restic.b2.id }}"
|
|
|
|
B2_ACCOUNT_KEY: "{{ secrets.restic.b2.key }}"
|
2022-12-22 16:58:48 +00:00
|
|
|
TZ: "{{ timezone }}"
|
2022-12-21 21:25:10 +00:00
|
|
|
volumes:
|
2022-12-22 16:58:48 +00:00
|
|
|
- "{{ services.caddy.volume }}:/mnt/volumes/caddy:ro"
|
|
|
|
- "{{ services.nextcloud.volume }}:/mnt/volumes/nextcloud:ro"
|
|
|
|
- "{{ services.emby.volume }}/programdata:/mnt/volumes/emby/programdata:ro"
|
2022-12-21 21:25:10 +00:00
|
|
|
|
2022-12-23 17:46:44 +00:00
|
|
|
prune:
|
2022-12-21 21:25:10 +00:00
|
|
|
image: "mazzolino/restic:{{ services.restic.version }}"
|
|
|
|
restart: unless-stopped
|
|
|
|
environment:
|
2022-12-23 15:57:37 +00:00
|
|
|
RUN_ON_STARTUP: 'false'
|
2022-12-21 21:25:10 +00:00
|
|
|
PRUNE_CRON: '0 0 4 * * *'
|
|
|
|
RESTIC_REPOSITORY: "b2:{{ secrets.restic.b2.bucket }}:{{ services.restic.repo }}"
|
2022-12-22 19:18:27 +00:00
|
|
|
RESTIC_PASSWORD: "{{ secrets.restic.repo_pw }}"
|
2022-12-21 21:25:10 +00:00
|
|
|
RESTIC_PRUNE_ARGS: >-
|
|
|
|
--verbose
|
|
|
|
B2_ACCOUNT_ID: "{{ secrets.restic.b2.id }}"
|
|
|
|
B2_ACCOUNT_KEY: "{{ secrets.restic.b2.key }}"
|
2022-12-22 16:58:48 +00:00
|
|
|
TZ: "{{ timezone }}"
|
2022-12-21 21:25:10 +00:00
|
|
|
|
2022-12-23 17:46:44 +00:00
|
|
|
check:
|
2022-12-21 21:25:10 +00:00
|
|
|
image: "mazzolino/restic:{{ services.restic.version }}"
|
|
|
|
restart: unless-stopped
|
|
|
|
environment:
|
2022-12-23 15:57:37 +00:00
|
|
|
RUN_ON_STARTUP: 'false'
|
2022-12-22 16:58:48 +00:00
|
|
|
CHECK_CRON: '0 30 4 * * *'
|
2022-12-21 21:25:10 +00:00
|
|
|
RESTIC_REPOSITORY: "b2:{{ secrets.restic.b2.bucket }}:{{ services.restic.repo }}"
|
2022-12-22 19:18:27 +00:00
|
|
|
RESTIC_PASSWORD: "{{ secrets.restic.repo_pw }}"
|
2022-12-21 21:25:10 +00:00
|
|
|
RESTIC_CHECK_ARGS: >-
|
|
|
|
--verbose
|
|
|
|
B2_ACCOUNT_ID: "{{ secrets.restic.b2.id }}"
|
|
|
|
B2_ACCOUNT_KEY: "{{ secrets.restic.b2.key }}"
|
2022-12-22 16:58:48 +00:00
|
|
|
TZ: "{{ timezone }}"
|