41 lines
2.3 KiB
Django/Jinja
Executable file
41 lines
2.3 KiB
Django/Jinja
Executable file
#!/bin/bash
|
|
#
|
|
#
|
|
# This file is managed via Ansible, do not edit manually. Changes might get overwitten.
|
|
#
|
|
#
|
|
source /opt/scripts/restic/restic.env
|
|
source /opt/scripts/restic/restic_db_passwords.env
|
|
#We will have to find out whether or not we need to initialize the repo. A non-zero exit code indicates that it has not yet been initialized.
|
|
restic snapshots
|
|
if [ "$?" -eq "0" ]
|
|
then
|
|
echo "Repo is already initialized, no need to do that."
|
|
else
|
|
echo "We need to initialize the repo first." && restic init
|
|
fi
|
|
|
|
echo "Now dumping databases, this might take a while..."
|
|
set -x
|
|
docker exec -t matrix_sql.server4 pg_dumpall -c -U user_synapse_unhb | bzip2 > /opt/db_dumps/db-dump-synapse_db.sql.bz2
|
|
docker exec -t authentik-postgresql-1.server4 pg_dumpall -c -U authentik | bzip2 > /opt/db_dumps/db-dump-authentik_db.sql.bz2
|
|
docker exec -t hedgedoc_sql15.server4 pg_dumpall -c -U md | bzip2 > /opt/db_dumps/db-dump-hedgedoc_db.sql.bz2
|
|
docker exec -t tandoor-tandoor_recipes_db-1 pg_dumpall -c -U djangouser | bzip2 > /opt/db_dumps/db-dump-tandoor_db.sql.bz2
|
|
docker exec -t wikijs-wikijs-db-1 pg_dumpall -c -U wikijs | bzip2 > /opt/db_dumps/db-dump-wikijs_db.sql.bz2
|
|
docker exec -t nextcloud_sql.server4 sh -c "exec mariadb-dump --all-databases -uroot --password=$MARIADB_PASSWORD_NEXTCLOUD" | bzip2 > /opt/db_dumps/db-dump-nextcloud_db.sql.bz2
|
|
docker exec -t etherpad_sql.server4 sh -c "exec mariadb-dump --all-databases -uroot --password=$MARIADB_PASSWORD_ETHERPAD" | bzip2 > /opt/db_dumps/db-dump-etherpad_db.sql.bz2
|
|
docker exec -t jverein_sql.server4 sh -c "exec mariadb-dump --all-databases -uroot --password=$MARIADB_PASSWORD_JVEREIN" | bzip2 > /opt/db_dumps/db-dump-jverein_db.sql.bz2
|
|
docker exec -t url-shortener_sql.server4 sh -c "exec mariadb-dump --all-databases -uroot --password=$MARIADB_PASSWORD_URLSHORTENER" | bzip2 > /opt/db_dumps/db-dump-urlshortener_db.sql.bz2
|
|
docker exec -t wiki_sql.server4 sh -c "exec mariadb-dump --all-databases -uroot --password=$MARIADB_PASSWORD_WIKI" | bzip2 > /opt/db_dumps/db-dump-wiki_db.sql.bz2
|
|
docker exec -t wordpress_sql.server4 sh -c "exec mysqldump --all-databases -uroot --password=$MARIADB_PASSWORD_WORDPRESS" | bzip2 > /opt/db_dumps/db-dump-wordpress_db.sql.bz2
|
|
set +x
|
|
|
|
restic backup --verbose \
|
|
/etc \
|
|
/home \
|
|
/opt \
|
|
/root \
|
|
/srv
|
|
# /var/lib/docker/volumes/ \
|
|
|
|
echo "done! :)"
|