diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2021-03-06 19:52:13 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2021-03-06 19:52:13 +0100 |
commit | d1a4ed0f7918005dc8972a83a919b99616f79112 (patch) | |
tree | d2caef2ba920d32a3bc4be453bb6aa044f0d7ed5 /app/backup/build | |
parent | 27963ca089bcbfc57313550bb4e466531755ae93 (diff) | |
download | infrastructure-d1a4ed0f7918005dc8972a83a919b99616f79112.tar.gz infrastructure-d1a4ed0f7918005dc8972a83a919b99616f79112.zip |
Matrix backup draft
Diffstat (limited to 'app/backup/build')
-rw-r--r-- | app/backup/build/backup-matrix/Dockerfile | 22 | ||||
-rwxr-xr-x | app/backup/build/backup-matrix/do_backup.sh | 27 |
2 files changed, 49 insertions, 0 deletions
diff --git a/app/backup/build/backup-matrix/Dockerfile b/app/backup/build/backup-matrix/Dockerfile new file mode 100644 index 0000000..34b6040 --- /dev/null +++ b/app/backup/build/backup-matrix/Dockerfile @@ -0,0 +1,22 @@ +FROM golang:buster as builder + +WORKDIR /root +RUN git clone https://filippo.io/age && cd age/cmd/age && go build -o age . + +FROM amd64/debian:buster + +COPY --from=builder /root/age/cmd/age/age /usr/local/bin/age + +RUN apt-get update && \ + apt-get -qq -y full-upgrade && \ + apt-get install -y rsync wget openssh-client postgresql-client && \ + apt-get clean && \ + rm -f /var/lib/apt/lists/*_* + +RUN mkdir -p /root/.ssh +WORKDIR /root + +COPY do_backup.sh /root/do_backup.sh + +CMD "/root/do_backup.sh" + diff --git a/app/backup/build/backup-matrix/do_backup.sh b/app/backup/build/backup-matrix/do_backup.sh new file mode 100755 index 0000000..d7dd9f2 --- /dev/null +++ b/app/backup/build/backup-matrix/do_backup.sh @@ -0,0 +1,27 @@ +#!/bin/sh + +set -x -e + +cd /root + +chmod 0600 .ssh/id_ed25519 + +cat > .ssh/config <<EOF +Host backuphost + HostName $TARGET_SSH_HOST + Port $TARGET_SSH_PORT + User $TARGET_SSH_USER +EOF + +echo "export sql" +# note, -Fc means that postgresql compresses the output +PGPASSWORD=$MATRIX_PSQL_PWD +pg_dump -v -Fc -U $MATRIX_PSQL_USER -h psql-proxy.service.2.cluster.deuxfleurs.fr $MATRIX_PSQL_DB | \ + age -r "$(cat /root/.ssh/id_ed25519.pub)" | \ + ssh backuphost "cat > $TARGET_SSH_DIR/matrix/db-$(date --iso-8601=minute).gz.age" + +MATRIX_MEDIA="/mnt/glusterfs/chat/matrix/synapse/media" +echo "export local_content" +tar -vcf - ${MATRIX_MEDIA} | \ + age -r "$(cat /root/.ssh/id_ed25519.pub)" | \ + ssh backuphost "cat > $TARGET_SSH_DIR/matrix/media-$(date --iso-8601=minute).gz.age" |