A modern, powerful web interface for Borg Backup and Borgmatic
Create, schedule, and manage backups on Linux servers with an intuitive UI. Supports files, databases, local and remote repositories - all fully Dockerized.
Creating backups on Linux servers for files and databases isn't always straightforward. Borg and Borgmatic are robust, battle-tested backup solutions offering de-duplication, encryption, and backup-over-SSH. But they require command-line expertise and manual configuration.
Borgmatic Director UI brings these powerful tools to everyone with:
- A visual wizard for creating backups - no YAML editing required
- Automatic database discovery and backup configuration
- Point-and-click scheduling without learning cron syntax
- Visual archive browser for easy restores
- Real-time progress monitoring and notifications
Create and manage backup jobs with a step-by-step wizard. Configure sources, destinations, schedules, and retention policies - all through an intuitive interface.
Connect to virtually any storage backend:
- Local repositories on attached storage
- SSH/SFTP to remote servers
- Hetzner Storage Boxes (with native Borg 1.x support)
- S3-compatible storage (AWS, MinIO, Backblaze, etc.)
- Rclone for 70+ cloud providers
Built-in SSH key management makes setting up remote repositories simple.
Automatic discovery and backup of your databases:
- MariaDB / MySQL
- PostgreSQL
- MongoDB
- SQLite
The wizard detects running database containers and configures backups automatically.
Visual schedule builder - no cron knowledge required:
- Predefined templates (daily, weekly, monthly)
- Custom schedules with visual time picker
- Execution history and status tracking
Browse your backup archives with a visual file explorer. Restore individual files or entire directories with a few clicks.
Get alerted when backups succeed or fail:
- ntfy - Native support for self-hosted notifications
- Apprise - Connect to 100+ notification services (Slack, Discord, Email, Telegram, and more)
- Borg 1.x and 2.x support - Use the version that fits your needs
- Live progress tracking - Watch backups in real-time
- Canary file protection - Detect ransomware before it's too late
- Retention policies - Automatic cleanup of old backups
- Health checks - Monitor repository integrity
The simplest way to get started:
- Go to speedbits.io/infinity-tools
- Click "Get Infinity Tools Now" and download the free Community version (registration required)
- Run the installer on your Linux server
- In the menu, go to "Infinity Apps" → "Borgmatic Director UI" → Install
That's it! Infinity Tools handles Docker, SSL certificates, and configuration automatically.
The easiest way to run with Docker - uses our pre-built image:
version: '3.8'
services:
borgmatic-ui:
image: ghcr.io/speedbitsinfinitytools/borgmatic-ui:latest
container_name: borgmatic-ui
ports:
- "18460:8000"
volumes:
- ./config:/app/config
- ./data:/app/data
- /:/host:ro # Access to host filesystem for backups
- /var/run/docker.sock:/var/run/docker.sock:ro # For database discovery
environment:
- NODE_ENV=production
restart: unless-stoppeddocker compose up -dOpen TCP port 18460 on your host/firewall if you access the UI from another machine.
Then visit http://localhost:18460 to access the UI.
For those who prefer to build from source for full transparency:
# Clone the repository
git clone https://github.com/SpeedbitsInfinityTools/borgmatic-ui-community.git
cd borgmatic-ui-community
# Build the Docker image locally
docker build -t borgmatic-ui:local -f docker/Dockerfile .
# Run with your locally built image
docker run -d \
--name borgmatic-ui \
-p 18460:8000 \
-v $(pwd)/config:/app/config \
-v $(pwd)/data:/app/data \
-v /:/host:ro \
-v /var/run/docker.sock:/var/run/docker.sock:ro \
-e NODE_ENV=production \
--restart unless-stopped \
borgmatic-ui:localOr use Docker Compose with your local image - create a docker-compose.yml:
version: '3.8'
services:
borgmatic-ui:
build:
context: .
dockerfile: docker/Dockerfile
container_name: borgmatic-ui
ports:
- "18460:8000"
volumes:
- ./config:/app/config
- ./data:/app/data
- /:/host:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
environment:
- NODE_ENV=production
restart: unless-stoppeddocker compose up -d --buildFor contributors or those who want to run without Docker:
# Clone the repository
git clone https://github.com/SpeedbitsInfinityTools/borgmatic-ui-community.git
cd borgmatic-ui-community
# Install dependencies
cd frontend && npm install && cd ..
cd nodejs && npm install && cd ..
# Build frontend
cd frontend && npm run build && cd ..
# Start the server
cd nodejs && npm startVisit http://localhost:8000 to access the UI.
Requirements: Node.js 18+, npm, Borg and Borgmatic installed on the host.
Once running:
- Create an SSH key (Settings → SSH Keys)
- Add a repository (Repositories → Add New)
- Create a backup job (Backup Jobs → Create New)
- Set up notifications (Settings → Notifications)
- Username:
admin(always) - Password: set by you on first web login (minimum 10 characters; there is no static default like
admin123)
If no admin.yaml exists, the login page shows Create admin password.
After creating it once, sign in with:
- Username:
admin - Your chosen password
Optional non-interactive setup: set ADMIN_PASSWORD=YourSecurePassword (minimum 10 characters) in your compose environment before first start.
If you need to reset later:
docker exec -it borgmatic-ui node src/utils/reset-admin.jsFree for personal and private use.
Includes all core features:
- Standalone and Client modes
- Full backup management
- All repository types
- Database discovery and backup
- Notifications
- Archive browsing and restore
For commercial use or to unlock Director Mode, visit www.speedbits.io.
Director Mode provides centralized management for multiple servers:
| Feature | Community | Commercial |
|---|---|---|
| Standalone Mode | ✅ | ✅ |
| Client Mode | ✅ | ✅ |
| Director Mode | ❌ | ✅ |
| Centralized notifications | ❌ | ✅ |
| Multi-client management | ❌ | ✅ |
| Client impersonation | ❌ | ✅ |
Director Mode advantages:
- Centralized notifications - All backup alerts from all clients flow through one Director
- Multi-client management - Connect dozens of backup clients to a single Director
- Client impersonation - View and manage any client's UI directly from the Director
This software is provided under a dual license:
- Community License - Free for personal, private, non-commercial use
- Commercial License - Required for business/commercial use
Personal and private use is free forever.
For commercial licensing, please visit www.speedbits.io.
- Docker and Docker Compose
- Linux host (for backup sources)
- 512MB RAM minimum, 1GB recommended
- Issues: Use GitHub Issues for bug reports
- Commercial Support: support@speedbits.io
- Website: https://speedbits.io
Using Infinity Tools? Borgmatic Director UI is included! Install it directly from the Infinity Tools menu under Apps.
© 2025 Smart In Venture GmbH, Germany. All Rights Reserved.
Built with care by the Speedbits team.




