Manage your data securely with a web-accessible backup solution built on top of the restic CLI. This lightweight application provides an intuitive interface to create repositories, browse snapshots, and restore files without complex command-line arguments. It runs quietly in the background, handling scheduled snapshots and repository health operations.
Key features include:
Enjoy fast, reliable, and encrypted backups combined with the convenience of a modern web dashboard.
services:
backrest:
image: garethgeorge/backrest:latest
container_name: backrest
restart: unless-stopped
environment:
- TZ=Etc/UTC
- PUID=1000
- PGID=1000
- XDG_CACHE_HOME=/cache
ports:
- "9898:9898"
volumes:
- ./data:/data
- ./cache:/cache
# Mount the directory you wish to backup
- ${BACKUP_SOURCE_DIR}:/source:roBACKUP_SOURCE_DIR=/path/to/your/documentsAuto-fetched about 22 hours ago
Auto-fetched about 22 hours ago