1
Fork 0
mirror of https://github.com/Steffo99/backup-duplicity.git synced 2024-12-23 12:04:22 +00:00

Compare commits

..

No commits in common. "3c35a85c1a6150be1cffb0c5cbc71d3d0226b749" and "1b4f138db3d714bd0fb5e834c746f3e3a287e5c3" have entirely different histories.

6 changed files with 42 additions and 89 deletions

View file

@ -5,9 +5,9 @@ FROM alpine:latest AS final
# RUN pacman --noconfirm -Syu duplicity python-pip python-pydrive2 # RUN pacman --noconfirm -Syu duplicity python-pip python-pydrive2
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true ENV CARGO_NET_GIT_FETCH_WITH_CLI=true
RUN \ RUN \
apk add py3-pip python3-dev gcc libffi-dev musl-dev openssl-dev pkgconfig duplicity rust cargo git curl && \ apk add py3-pip python3-dev gcc libffi-dev musl-dev openssl-dev pkgconfig duplicity rust cargo git && \
pip install --upgrade pip --break-system-packages && \ pip install --upgrade pip && \
pip install pydrive2 --break-system-packages && \ pip install pydrive2 && \
apk del rust musl-dev libffi-dev gcc python3-dev cargo git pkgconfig openssl-dev apk del rust musl-dev libffi-dev gcc python3-dev cargo git pkgconfig openssl-dev
WORKDIR /usr/lib/duplicity WORKDIR /usr/lib/duplicity
@ -32,5 +32,3 @@ LABEL org.opencontainers.image.authors="Stefano Pigozzi <me@steffo.eu>"
# Configure duplicity # Configure duplicity
ENV DUPLICITY_FULL_IF_OLDER_THAN=1M ENV DUPLICITY_FULL_IF_OLDER_THAN=1M
ENV NTFY=""
ENV NTFY_TAGS=""

View file

@ -18,11 +18,10 @@ Backup solution for Docker volumes based on Duplicity
### Backup ### Backup
1. Create two new volumes in Docker with the names `duplicity_credentials` and `duplicity_cache`: 1. Create a new volume in Docker with the name `duplicity_credentials`:
```console ```console
# docker volume create duplicity_credentials # docker volume create duplicity_credentials
# docker volume create duplicity_cache
``` ```
2. Create a new file in the host system with the name `/root/secrets/backup/passphrase.txt`, and enter in it a secure passphrase to use to encrypt files: 2. Create a new file in the host system with the name `/root/secrets/backup/passphrase.txt`, and enter in it a secure passphrase to use to encrypt files:

View file

@ -8,47 +8,8 @@ set -e
export PASSPHRASE=$(cat "${DUPLICITY_PASSPHRASE_FILE}") export PASSPHRASE=$(cat "${DUPLICITY_PASSPHRASE_FILE}")
echo "Launched in backup mode, performing backup..." >> /dev/stderr echo "Launched in backup mode, performing backup..." >> /dev/stderr
if [ -n "${NTFY}" ]; then
echo "Sending ntfy backup start notification..." >> /dev/stderr
curl "${NTFY}" \
--silent \
--header "X-Title: Backup started" \
--data "Duplicity is attempting to perform a backup to **${DUPLICITY_TARGET_URL}**..." \
--header "X-Priority: min" \
--header "X-Tags: arrow_heading_up,${NTFY_TAGS}" \
--header "Content-Type: text/markdown"
fi
duplicity \ duplicity \
--allow-source-mismatch \ --allow-source-mismatch \
--full-if-older-than "${DUPLICITY_FULL_IF_OLDER_THAN}" \ --full-if-older-than "${DUPLICITY_FULL_IF_OLDER_THAN}" \
/mnt \ /mnt \
"${DUPLICITY_TARGET_URL}" "${DUPLICITY_TARGET_URL}"
backup_result=$?
if [ -n "${NTFY}" ]; then
case "$backup_result" in
0)
echo "Sending ntfy backup complete notification..." >> /dev/stderr
curl "${NTFY}" \
--silent \
--header "X-Title: Backup complete" \
--data "Duplicity has successfully performed a backup to **${DUPLICITY_TARGET_URL}**!" \
--header "X-Priority: low" \
--header "X-Tags: white_check_mark,${NTFY_TAGS}" \
--header "Content-Type: text/markdown"
;;
*)
echo "Sending ntfy backup failed notification..." >> /dev/stderr
curl "${NTFY}" \
--silent \
--header "X-Title: Backup failed" \
--data "Duplicity failed to perform a backup to **${DUPLICITY_TARGET_URL}**, and exited with status code **${backup_result}**." \
--header "X-Priority: max" \
--header "X-Tags: sos,${NTFY_TAGS}" \
--header "Content-Type: text/markdown"
;;
esac
fi

View file

@ -7,8 +7,6 @@ secrets:
volumes: volumes:
duplicity_credentials: duplicity_credentials:
external: true external: true
duplicity_cache:
external: true
services: services:
duplicity: duplicity:
@ -19,14 +17,11 @@ services:
volumes: volumes:
- "./exampledata:/mnt/example" - "./exampledata:/mnt/example"
- "duplicity_credentials:/var/lib/duplicity" - "duplicity_credentials:/var/lib/duplicity"
- "duplicity_cache:/usr/lib/duplicity/.cache/duplicity"
environment: environment:
MODE: "backup" MODE: "backup"
DUPLICITY_PASSPHRASE_FILE: "/run/secrets/duplicity_passphrase" DUPLICITY_PASSPHRASE_FILE: "/run/secrets/duplicity_passphrase"
DUPLICITY_TARGET_URL: "pydrive://641079776729-90s4tnli0ao913ajrpv8cp3c4kkk77j5.apps.googleusercontent.com/Duplicity/this" DUPLICITY_TARGET_URL: "pydrive://641079776729-90s4tnli0ao913ajrpv8cp3c4kkk77j5.apps.googleusercontent.com/Duplicity/this"
GOOGLE_DRIVE_SETTINGS: "/run/secrets/google_client_config" GOOGLE_DRIVE_SETTINGS: "/run/secrets/google_client_config"
NTFY: "https://ntfy.sh/garasauto"
NTFY_TAGS: "garasauto"
secrets: secrets:
- google_client_config - google_client_config
- duplicity_passphrase - duplicity_passphrase