{"id":41833401,"url":"https://github.com/brayandm/backup-manager","last_synced_at":"2026-01-25T08:44:19.599Z","repository":{"id":241326054,"uuid":"805771556","full_name":"brayandm/backup-manager","owner":"brayandm","description":"Backup Manager is a self-hosted tool for centralized backup management across various data types and storage servers. It features scheduling, retention policies, encryption, and notifications, offering a robust solution for backups, migrations, and data integrity.","archived":false,"fork":false,"pushed_at":"2025-02-13T22:55:42.000Z","size":1573,"stargazers_count":9,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-13T23:33:29.816Z","etag":null,"topics":["backup-management","data-migration","open-source","self-hosted"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/brayandm.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-05-25T12:13:20.000Z","updated_at":"2025-02-13T22:55:46.000Z","dependencies_parsed_at":"2024-06-08T13:38:38.042Z","dependency_job_id":"80dfcb8b-967e-4ddb-a856-df8f66eca799","html_url":"https://github.com/brayandm/backup-manager","commit_stats":null,"previous_names":["brayandm/backup-manager"],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/brayandm/backup-manager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brayandm%2Fbackup-manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brayandm%2Fbackup-manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brayandm%2Fbackup-manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brayandm%2Fbackup-manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/brayandm","download_url":"https://codeload.github.com/brayandm/backup-manager/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brayandm%2Fbackup-manager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28749780,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T08:31:04.260Z","status":"ssl_error","status_checked_at":"2026-01-25T08:30:28.859Z","response_time":113,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["backup-management","data-migration","open-source","self-hosted"],"created_at":"2026-01-25T08:44:18.996Z","updated_at":"2026-01-25T08:44:19.594Z","avatar_url":"https://github.com/brayandm.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Backup Manager v2.0.4\n\n## Installation of Backup Manager using backup-manager CLI (tested on Ubuntu/Linux, for other OS, please refer to the [Installation of Backup Manager using docker compose](#installation-of-backup-manager-using-docker-compose-all-os))\n\n### How to install dependencies\n\n1 - [Install docker engine](https://docs.docker.com/engine/install/)\n\n2 - Download backup-manager CLI and add to PATH:\n\n```bash\nmkdir -p ~/.local/backup-manager-cli/ \u0026\u0026 \\\ncd ~/.local/backup-manager-cli/ \u0026\u0026 \\\ncurl -o backup-manager https://raw.githubusercontent.com/brayandm/backup-manager/2.0.4/backup-manager.sh \u0026\u0026 \\\nchmod +x backup-manager \u0026\u0026 \\\necho \"export PATH=\\\"~/.local/backup-manager-cli/:\\$PATH\\\"\" \u003e\u003e ~/.bashrc \u0026\u0026 \\\nsource ~/.bashrc\n```\n\n### How to install\n\n```bash\nbackup-manager install 2.0.4\n```\n\n### How to start\n\n```bash\nbackup-manager start\n```\n\n### How to open (browser)\n\n```bash\nbackup-manager open\n```\n\n### How to stop\n\n```bash\nbackup-manager stop\n```\n\n### How to uninstall\n\n```bash\nbackup-manager uninstall\n```\n\n### How to update to this version (keeping the data)\n\n```bash\nbackup-manager update 2.0.4\n```\n\n### How to check the current version\n\n```bash\nbackup-manager version\n```\n\n## Installation of Backup Manager using docker compose (all OS)\n\n### How to install dependencies\n\n1 - [Install docker engine](https://docs.docker.com/engine/install/)\n\n2 - Download docker-compose.yml:\n\n```bash\nmkdir -p ~/.local/backup-manager/ \u0026\u0026 \\\ncd ~/.local/backup-manager/ \u0026\u0026 \\\necho 2.0.4 \u003e VERSION \u0026\u0026 \\\ncurl -o docker-compose.yml https://raw.githubusercontent.com/brayandm/backup-manager/2.0.4/docker-compose.yml\n```\n\n### How to start\n\n```bash\ncd ~/.local/backup-manager/ \u0026\u0026 \\\nAPP_PORT=\u003cYOUR_CUSTOM_PORT\u003e VERSION=2.0.4 docker compose up -d\n```\n\n### How to open (browser)\n\n```bash\nopen http://localhost:\u003cYOUR_CUSTOM_PORT\u003e\n```\n\n### How to stop\n\n```bash\ncd ~/.local/backup-manager/ \u0026\u0026 \\\ndocker compose down --remove-orphans\n```\n\n### How to uninstall\n\n```bash\ncd ~/.local/backup-manager/ \u0026\u0026 \\\nVERSION=$(cat VERSION) \u0026\u0026 \\\nVERSION=VERSION docker compose down --volumes --remove-orphans --rmi all \u0026\u0026 \\\ncd ~/.local/ \u0026\u0026 \\\nrm -rf backup-manager/\n```\n\n### How to update to this version (keeping the data)\n\n```bash\ncd ~/.local/backup-manager/ \u0026\u0026 \\\nVERSION=$(cat VERSION) \u0026\u0026 \\\nVERSION=VERSION docker compose down --remove-orphans --rmi all \u0026\u0026 \\\ncd ~/.local/ \u0026\u0026 \\\nrm -rf backup-manager/ \u0026\u0026 \\\nmkdir -p ~/.local/backup-manager/ \u0026\u0026 \\\ncd ~/.local/backup-manager/ \u0026\u0026 \\\necho 2.0.4 \u003e VERSION \u0026\u0026 \\\ncurl -o docker-compose.yml https://raw.githubusercontent.com/brayandm/backup-manager/2.0.4/docker-compose.yml\n```\n\n## Screenshots\n\n### Overview\n\n![App Overview](images/app-overview.png)\n\n### Backup configuration\n\n![Backup Configuration](images/app-backup-configuration.png)\n\n## Features\n\n-   OS compatibility:\n    -   for use:\n        -   [x] All OS that supports docker engine\n    -   for storage servers, intermediate servers and data sources:\n        -   [x] Linux\n-   Overview:\n\n    -   [x] Metrics about backups and migrations\n    -   [x] Amount of backups and migrations per week and year\n    -   [x] Free and used space in storage servers\n\n-   Setup data sources:\n    -   [x] Folder\n    -   [x] File\n    -   Database:\n        -   [x] MySQL\n        -   [x] PostgreSQL\n    -   [x] AWS S3\n-   Setup storage servers:\n    -   [x] AWS S3\n    -   [x] Normal server\n-   Connections Chainings:\n    -   [x] SSH\n    -   [x] Docker container\n-   Backup configuration:\n    -   [x] Multiple data sources and storage servers\n    -   [x] Backup schedule\n    -   [x] Backup policy retention\n    -   [x] Backup compression\n    -   [x] Backup encryption\n    -   [x] Backup integrity check\n    -   [x] Backup monitoring\n-   Migration configuration:\n    -   [x] Multiple data sources\n    -   [x] Migration schedule\n    -   [x] Migration compression\n    -   [x] Migration monitoring\n-   Notifications:\n    -   [x] Telegram\n-   Authentication:\n    -   [x] JWT\n    -   [x] One admin user\n\n## For developers\n\n### Setup git hooks\n\n```bash\ncp .hooks/* .git/hooks/\n```\n\n### How to build docker images\n\n```bash\nbash build.sh\n```\n\n### How to generate a readme file using the template in /templates folder\n\n```bash\nbash genreadme.sh\n```\n\n### How to generate a new version x.x.x\n\n```bash\nbash versionate.sh\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrayandm%2Fbackup-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrayandm%2Fbackup-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrayandm%2Fbackup-manager/lists"}