ElkarBackup

Manage all network backups from a single web interface. This open-source tool offers secure transfers, instant recovery, notifications, and custom scripting.

ElkarBackup provides a centralized solution for managing network backups through a single, easy-to-use web interface. As a free and open-source tool, it is built on reliable technologies like Rsync and SSH to ensure your company data is handled securely and efficiently. It simplifies the responsibility of creating and maintaining backup strategies.

Key features that help you secure your data include:

  • Centralized Web UI: Manage all your backup clients, jobs, and restores from one convenient dashboard.
  • Secure Transfers: Files are transferred using the proven combination of Rsync over SSH for data integrity and security.
  • Instant Recovery: Quickly restore data by simply choosing the specific date and time you need from your backup history.
  • Custom Scripting: Automate tasks by running your own scripts before or after a backup job completes.
  • Notifications & Logs: Receive email alerts when an issue occurs and access detailed logs for monitoring and troubleshooting.

Directory Structure

elkarbackup
backups
mysql-data
ssh
uploads
.env
docker-compose.yml

docker-compose.yml

services:
  elkarbackup:
    image: elkarbackup/elkarbackup:latest
    ports:
      - "8080:80"
    environment:
      - DATABASE_HOST=db
      - DATABASE_NAME=elkarbackup
      - DATABASE_USER=elkarbackup
      - DATABASE_PASSWORD=${DB_PASSWORD}
    volumes:
      - ./backups:/app/backups
      - ./uploads:/app/uploads
      - ./ssh:/var/lib/elkarbackup/.ssh
    depends_on:
      - db
    restart: unless-stopped

  db:
    image: mariadb:10.5
    environment:
      - MYSQL_DATABASE=elkarbackup
      - MYSQL_USER=elkarbackup
      - MYSQL_PASSWORD=${DB_PASSWORD}
      - MYSQL_ROOT_PASSWORD=${DB_ROOT_PASSWORD}
    volumes:
      - ./mysql-data:/var/lib/mysql
    restart: unless-stopped

.env

DB_PASSWORD=elkarbackup_secure_password
DB_ROOT_PASSWORD=root_secure_password
Categories:

Share:

Ad
Favicon

 

  
 

Similar to ElkarBackup

Favicon

 

  
  
Favicon

 

  
  
Favicon