Skip to content

redpencilio/app-borgmatic

Repository files navigation

app-borgmatic

This repository helps setting up backups using borgmatic on a given server, using docker-compose. It includes a borgmatic-exporter container to export metrics for Prometheus. The metrics are written to a text file in ./data/borgmatic-exporter/metrics/, ready to be fed to a node-exporter textfile collector.

Getting started

Principles

This repository is to be cloned to, say, /data/app-borgmatic. By default, Borgmatic expects a configurations files inside /etc/borgmatic.d/. This directory is bind-mounted to ./config/borgmatic.d/, so that the configuration can be added by hand.

Per-app configuration

It is possible to use multiple configuration files with different configuration values, to backup different parts of the server with a different backup policy. This is for example useful to apply different retentions for logs and backup dumps.

To use this, just add several .yaml files inside ./config/borgmatic.d/. Each invocation of borgmatic will apply these files independently, in sequence.

How-to guides

Setup backups on a server

  1. Be root on the server

  2. Clone this repo to /data/app-borgmatic.

  3. Create an SSH keypair for backups, without passphrase, and without overwriting existing keys:

yes n | ssh-keygen -f ~/.ssh/id_borgmatic -N ''
  1. Authorize the key on backup server. We're not using ssh-copy-id because some Ubuntu versions don't have SFTP mode of ssh-copy-id, which is needed by Hetzner's storage boxes.

    Note: Adding the command=...,restrict part to the line containing the key prevents SFTP/SSH use for anything other than remote borg commands, which helps mitigate the situation where an attacker completely compromises the server:

sftp -P <port> -o StrictHostKeyChecking=accept-new <user>@<host> << EOF
mkdir .ssh
touch -ac .ssh/authorized_keys
get .ssh/authorized_keys /tmp/authorized_keys
!grep -q "$(cat /root/.ssh/id_borgmatic.pub)" /tmp/authorized_keys || echo 'command="borg serve --umask=077 --info",restrict' $(cat /root/.ssh/id_borgmatic.pub) >> /tmp/authorized_keys
put /tmp/authorized_keys .ssh/authorized_keys
!rm /tmp/authorized_keys
bye
EOF

Additional restrictions can be set, to restrict Borg to specific repositories, or force append-only mode:

command="borg serve --umask=077 --info --append-only --restrict-to-repository /home/something.borg/ --restrict-to-repository /home/something-else.borg/",restrict ssh-rsa ...
  1. Create ./config/borgmatic.d/*.yaml file(s) from the provided example:
cp config.example.yaml config/borgmatic.d/config.yaml

Or if using multiple configuration files:

cp config.example.yaml config/borgmatic.d/main.yaml
cp config.example.yaml config/borgmatic.d/something.yaml
  1. Modify it/them...

  2. MAKE SURE TO chmod THE RESULTING FILE(S), it/they will contain the passphrase:

for f in config/borgmatic.d/*.yaml; do
    chown root: "$f"; chmod 600 "$f"
done
  1. Create a docker-compose.override.yml, and modify as needed:
cp docker-compose.override.example.yml docker-compose.override.yml
  1. Crontabs for both borgmatic and borgmatic-exporter are set using environment variables.

  2. Start the containers:

docker compose up -d
  1. Initialize the borg repository (multiple repositories will be initialized as defined in configuration files):
docker compose exec borgmatic borgmatic init --encryption repokey
# if append-only is wanted:
docker compose exec borgmatic borgmatic init --encryption repokey --append-only

Prevent locking yourself out

The repository encryption uses repokey, which stores the encryption in the repository, and uses the passphrase from the config file for decryption. This means there are two items you should keep somewhere safe:

  • the passphrase
  • the key, needs to be exported:
docker compose exec borgmatic borgmatic key export

yes, that's two borgmatic borgmatic in a row: the first is the docker-compose service, the second issues a borgmatic command within that container.

Restore backups on the client server

To be able to use Borg's FUSE mount capacities, we need to add some settings to the docker-compose file. These are bundled in docker-compose.restore.yml, including a volume mounted to a location on the host for restored files to go.

So to restore backups:

  1. Stop the running borgmatic container:
docker compose down
  1. Modify the .env to use docker-compose.restore.yml (the line is commented)

  2. Start the new restore container:

docker compose up -d
  1. Run a shell on the container and mount needed archive(s)
docker compose exec borgmatic bash
borgmatic mount --archive latest --mount-point /mnt
  1. Copy/restore needed files to the bind mount defined in docker-compose.restore.yml:
cp /mnt/data/backups/foo /restore
  1. Unmount, exit and remove the restore container:
umount /mnt && exit
docker compose down
  1. Don't forget to change the .env back to what it was, and to start the borgmatic container again.

Restore backups on a local machine

As long as you have the passphrase and SSH key for the repository, you can inspect/export/mount the borgmatic repository from any machine.

Just install Borgmatic (using this repo or locally on your machine) and use the same configuration file(s) as the one configured for the client server.

You then have access to, for example:

  • borgmatic list
  • borgmatic info
  • borgmatic extract ...
  • borgmatic mount ...

Include borgmatic metrics in a configured node-exporter

Metrics are written to a text file, ready to be included in node-exporter through its textfile collector.

You will need to edit the node-exporter's docker-compose.yml to add a volume and a matching command argument:

volumes:
  - ...
  - /data/app-borgmatic/data/borgmatic-exporter/metrics:/data/borgmatic-metrics:ro
command:
  - "--collector.textfile.directory=/data/borgmatic-metrics"

Run commands inside a container

The syntax when running a borgmatic or borg command inside a container implies multiple borgmatic next to each other. The first borgmatic is the service name, the second is the borgmatic command from inside the container.

Here are some examples:

  • Run borgmatic inside the borgmatic container:
docker compose exec borgmatic borgmatic ...
  • If multiple config files and/or repositories are set, you will need to specify which repository for some commands:
docker compose exec borgmatic borgmatic list --repository foo
  • If a borg command isn't natively handled by borgmatic, you can issue the borg subcommand to arbitrarily run a borg command. This has the advantage of using the borgmatic configuration, simplifying the underlying borg command:
docker compose exec borgmatic borgmatic borg ...

Reference

About

Application to configure backups using Borgmatic

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published