Skip to content

Backrest is a web UI and orchestrator for restic backup.

License

Notifications You must be signed in to change notification settings

banto6/backrest

 
 

Repository files navigation


Overview

Backrest is a web-accessible backup solution built on top of restic. Backrest provides a WebUI which wraps the restic CLI and makes it easy to create repos, browse snapshots, and restore files. Additionally, Backrest can run in the background and take an opinionated approach to scheduling snapshots and orchestrating repo health operations.

By building on restic, Backrest leverages restic's mature feature set. Restic provides fast, reliable, and secure backup operations.

Backrest itself is built in Golang (matching restic's implementation) and is shipped as a self-contained and light weight binary with no dependencies other than restic. This project aims to be the easiest way to setup and get started with backups on any system. You can expect to be able to perform all operations from the web interface but should you ever need more control, you are free to browse your repo and perform operations using the restic cli. Additionally, Backrest can safely detect and import your existing snapshots (or externally created snapshots on an ongoing basis).

Preview

Platform Support

  • Docker
  • Linux
  • macOS
  • Windows
  • FreeBSD

Features

  • WebUI supports local and remote access (e.g. run on a NAS and access from your desktop)
  • Multi-platform support (Linux, macOS, Windows, FreeBSD, Docker)
  • Import your existing restic repositories
  • Cron scheduled backups and health operations (e.g. prune, check, forget)
  • UI for browsing and restoring files from snapshots
  • Configurable backup notifications (e.g. Discord, Slack, Shoutrrr, Gotify, Healthchecks)
  • Add shell command hooks to run before and after backup operations.
  • Compatible with rclone remotes
  • Backup to any restic supported storage (e.g. S3, B2, Azure, GCS, local, SFTP, and all rclone remotes)

User Guide

See the Backrest docs.

Installation

Backrest is packaged as a single executable. It can be run directly on Linux, macOS, and Windows. restic will be downloaded and installed on first run.

Download options

  • Download and run a release from the releases page.
  • Build from source (see below).
  • Run with docker: garethgeorge/backrest:latest (see on dockerhub) for an image that includes rclone and common unix utilities or garethgeorge/backrest:scratch for a minimal image.

Backrest is accessible from a web browser. By default it binds to 127.0.0.1:9898 and can be accessed at http://localhost:9898. Change the port with the BACKREST_PORT environment variable e.g. BACKREST_PORT=0.0.0.0:9898 backrest to listen on all network interfaces. On first startup backrest will prompt you to create a default username and password, this can be changed later in the settings page.

Note

Backrest will use your system install of restic if it is available and matches Backrest's required version. Otherwise it will download and install a compatible version of restic in its data directory. Backrest will keep restic up to date with the latest version. You force use of a specific restic binary (or non-standard version) by setting the BACKREST_RESTIC_COMMAND environment variable to the path of your restic binary.

Running with Docker Compose

Docker image: https://hub.docker.com/r/garethgeorge/backrest

Example compose file:

version: "3.2"
services:
  backrest:
    image: garethgeorge/backrest:latest
    container_name: backrest
    hostname: backrest
    volumes:
      - ./backrest/data:/data
      - ./backrest/config:/config
      - ./backrest/cache:/cache
      - /MY-BACKUP-DATA:/userdata # [optional] mount local paths to backup here.
      - /MY-REPOS:/repos # [optional] mount repos if using local storage, not necessary for remotes e.g. B2, S3, etc.
    environment:
      - BACKREST_DATA=/data # path for backrest data. restic binary and the database are placed here.
      - BACKREST_CONFIG=/config/config.json # path for the backrest config file.
      - XDG_CACHE_HOME=/cache # path for the restic cache which greatly improves performance.
      - TZ=America/Los_Angeles # set the timezone for the container, used as the timezone for cron jobs.
    restart: unless-stopped
    ports:
      - 9898:9898

Running on Linux

All Linux Platforms

Download a release from the releases page

Using systemd with the install script (Recommended)

Extract the release you downloaded and run the install script:

# Extract the release to a subfolder of the current directory
mkdir backrest && tar -xzvf backrest_Linux_x86_64.tar.gz -C backrest
# Run the install script
cd backrest && ./install.sh

The install script will:

  • Move the Backrest binary to /usr/local/bin
  • Create a systemd service file at /etc/systemd/system/backrest.service
  • Enable and start the service

Read the script before running it to make sure you are comfortable with these operations.

Run on startup with cron (Basic)

Move the Backrest binary to /usr/local/bin:

sudo mv backrest /usr/local/bin/backrest

Add the following line to your crontab (e.g. crontab -e):

@reboot /usr/local/bin/backrest

Run on startup with systemd manually

sudo mv backrest /usr/local/bin/backrest

Create a systemd service file at /etc/systemd/system/backrest.service with the following contents:

[Unit]
Description=Backrest
After=network.target

[Service]
Type=simple
User=<your linux user>
Group=<your linux group>
ExecStart=/usr/local/bin/backrest
Environment="BACKREST_PORT=127.0.0.1:9898"

[Install]
WantedBy=multi-user.target

Then run the following commands to enable and start the service:

sudo systemctl enable backrest
sudo systemctl start backrest

Note

You can set the Linux user and group to your primary user (e.g. whoami when logged in).

Arch Linux

Note

Backrest on AUR is not maintained by the Backrest official and has made minor adjustments to the recommended services. Please refer to here for details. In [email protected], use restic from the Arch Linux official repository by setting BACKREST_RESTIC_COMMAND. And for information on enable/starting/stopping services, please refer to Systemd#Using_units.

## Install Backrest from AUR
paru -Sy backrest  # or: yay -Sy backrest

## Enable Backrest service for current user
sudo systemctl enable --now backrest@$USER.service

Running on macOS

Using Homebrew

Backrest is provided as a homebrew tap. To install with brew run:

brew tap garethgeorge/homebrew-backrest-tap
brew install backrest
brew services start backrest
# optionally, install restic
brew install restic

This tap uses Brew services to launch and manage Backrest's lifecycle. Backrest will launch on startup and run on port ':9898` by default.

Note

You may need to grant Full Disk Access to backrest. To do this, go to System Preferences > Security & Privacy > Privacy > Full Disk Access and add the path to backrest (typically /usr/local/bin/backrest).

Manually using the install script

Download a Darwin release from the releases page and install it to /usr/local/bin.

Extract the release you downloaded and run the install script:

# extract the release to a subfolder of the current directory
mkdir backrest && tar -xzvf backrest_Darwin_arm64.tar.gz -C backrest
# run the install script
cd backrest && ./install.sh

The install script will:

  • Move the Backrest binary to /usr/local/bin
  • Create a launch agent file at ~/Library/LaunchAgents/com.backrest.plist
  • Load the launch agent

Read the script before running it to make sure you are comfortable with these operations.

Running on Windows

Windows Installer

Download a the Windows installer for your architecture from the releases page. The installer is named Backrest-setup-[arch].exe. Run the installer and follow the prompts.

The installer will place backrest and a GUI tray application to monitor backrest in %localappdata%\Programs\Backrest\. The GUI tray application will start on login by default.

[!NOTE] You can optionally override the default port of the installation by using PowerShell to run the installer with the BACKREST_PORT environment variable set to the desired port. E.g. to run backrest on port 8080, run the following command in PowerShell: BACKREST_PORT=:8080 .\Backrest-setup-x86_64.exe

Configuration

Environment Variables (Unix)

Variable Description Default
BACKREST_PORT Port to bind to 127.0.0.1:9898 (or 0.0.0.0:9898 for the docker images)
BACKREST_CONFIG Path to config file $HOME/.config/backrest/config.json
(or, if $XDG_CONFIG_HOME is set, $XDG_CONFIG_HOME/backrest/config.json)
BACKREST_DATA Path to the data directory $HOME/.local/share/backrest
(or, if $XDG_DATA_HOME is set, $XDG_DATA_HOME/backrest)
BACKREST_RESTIC_COMMAND Path to restic binary Defaults to a Backrest managed version of restic at $XDG_DATA_HOME/backrest/restic-x.x.x
XDG_CACHE_HOME Path to the cache directory

Environment Variables (Windows)

Variable Description Default
BACKREST_PORT Port to bind to 127.0.0.1:9898
BACKREST_CONFIG Path to config file %appdata%\backrest
BACKREST_DATA Path to the data directory %appdata%\backrest\data
BACKREST_RESTIC_COMMAND Path to restic binary Defaults to a Backrest managed version of restic in C:\Program Files\restic\restic-x.x.x
XDG_CACHE_HOME Path to the cache directory

Contributing

Contributions are welcome! See the issues or feel free to open a new issue to discuss a project. Beyond the core codebase, contributions to documentation, cookbooks, and testing are always welcome.

Build Depedencies

  • Node.js for UI development
  • Go 1.21 or greater for server development
  • goreleaser go install github.com/goreleaser/goreleaser@latest

(Optional) To Edit Protobuffers

apt install -y protobuf-compiler
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
go install github.com/bufbuild/buf/cmd/[email protected]
go install github.com/fullstorydev/grpcurl/cmd/grpcurl@latest
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
go install connectrpc.com/connect/cmd/protoc-gen-connect-go@latest
npm install -g @bufbuild/protoc-gen-es @connectrpc/protoc-gen-connect-es

Compiling

(cd webui && npm i && npm run build)
(cd cmd/backrest && go build .)

Using VSCode Dev Containers

You can also use VSCode with Dev Containers extension to quickly get up and running with a working development and debugging environment.

  1. Make sure Docker and VSCode with Dev Containers extension is installed
  2. Clone this repository
  3. Open this folder in VSCode
  4. When prompted, click on Open in Container button, or run > Dev Containers: Rebuild and Reopen in Containers command
  5. When container is started, go to Run and Debug, choose Debug Backrest (backend+frontend) and run it

Note

Provided launch configuration has hot reload for typescript frontend.

About

Backrest is a web UI and orchestrator for restic backup.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 51.2%
  • TypeScript 46.0%
  • Shell 1.5%
  • NSIS 1.0%
  • Dockerfile 0.2%
  • Sass 0.1%