{"id":25414211,"url":"https://github.com/jabuwu/docker-volume-backup","last_synced_at":"2026-04-30T13:34:11.855Z","repository":{"id":149460242,"uuid":"360444218","full_name":"jabuwu/docker-volume-backup","owner":"jabuwu","description":"Web based docker volume backup utility for backing up volume data to an S3 bucket, FTP, or local filesystem.","archived":false,"fork":false,"pushed_at":"2021-07-21T02:01:55.000Z","size":2048,"stargazers_count":4,"open_issues_count":3,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-03-02T02:29:36.299Z","etag":null,"topics":["docker"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jabuwu.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":"contributing.md","funding":null,"license":"license.md","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":"2021-04-22T08:19:28.000Z","updated_at":"2025-07-01T08:18:41.000Z","dependencies_parsed_at":null,"dependency_job_id":"e4eb30fc-f1d2-4853-b8ef-35880f30662a","html_url":"https://github.com/jabuwu/docker-volume-backup","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jabuwu/docker-volume-backup","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jabuwu%2Fdocker-volume-backup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jabuwu%2Fdocker-volume-backup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jabuwu%2Fdocker-volume-backup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jabuwu%2Fdocker-volume-backup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jabuwu","download_url":"https://codeload.github.com/jabuwu/docker-volume-backup/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jabuwu%2Fdocker-volume-backup/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32466333,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"ssl_error","status_checked_at":"2026-04-30T13:12:06.837Z","response_time":57,"last_error":"SSL_read: 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":["docker"],"created_at":"2025-02-16T14:48:01.265Z","updated_at":"2026-04-30T13:34:11.837Z","avatar_url":"https://github.com/jabuwu.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Docker Volume Backup\n\n![Logo](https://github.com/jabuwu/docker-volume-backup/blob/master/images/logo.png?raw=true)\n\n[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/jabuwu/docker-volume-backup)\n\nWeb based docker volume backup utility for backing up volume data to an S3 bucket, FTP, or local filesystem.\n\n## Project Status\n\nUse with caution. I've tested the project extensively with relatively small volumes and relatively few backup files, mostly using S3 as storage. Would love to get more people testing the project.\n\nA list of planned features/improvements can be found at [#1](https://github.com/jabuwu/docker-volume-backup/issues/1). Once those features are implemented, I'll probably create some versioning/release system so that Docker Hub need only build \"stable\" versions of the project.\n\n## How It works\n\nThe backend interacts with the Docker API through [dockerode](https://github.com/apocas/dockerode). The backup and restore operations create [alpine](https://hub.docker.com/_/alpine) containers attached to the volumes and runs `tar` commands inside them (along with a few other Unix commands), piping the data to/from `tar` back to the node process, which [gzip](https://nodejs.org/api/zlib.html#zlib_zlib_creategzip_options) compresses the data and streams it to/from S3, FTP, or the local filesystem.\n\nThe frontend is written in [Next.js](https://nextjs.org/) and simply interacts with the backend, mostly through [GraphQL](https://graphql.org/) queries. It's my first \"large\" React project so I'm sure I'm doing a lot of things suboptimally, and the code feels pretty messy.\n\n## Deployment\n\nThe best way to deploy is to use docker compose. Here is a working `docker-compose.yml` file:\n\n```\nversion: '3'\nservices:\n  docker-volume-backup:\n    image: jabuwu/docker-volume-backup\n    restart: always\n    environment:\n      - AUTH_USERNAME=user\n      - AUTH_PASSWORD=pass\n    ports:\n      - \"1999:1999\"\n    volumes:\n      - data:/data\n      - /var/run/docker.sock:/var/run/docker.sock\nvolumes:\n  data:\n```\n\nThe `AUTH_USERNAME` and `AUTH_PASSWORD` environment variables are optional. If provided, they will enable nginx basic auth with the given username/password.\n\n## Screenshots (Slightly Outdated)\n\n![Volumes](https://github.com/jabuwu/docker-volume-backup/blob/master/images/volumes.png?raw=true)\n\n![All Storage](https://github.com/jabuwu/docker-volume-backup/blob/master/images/all-storage.png?raw=true)\n\n![Storage](https://github.com/jabuwu/docker-volume-backup/blob/master/images/storage.png?raw=true)\n\n![Schedules](https://github.com/jabuwu/docker-volume-backup/blob/master/images/schedules.png?raw=true)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjabuwu%2Fdocker-volume-backup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjabuwu%2Fdocker-volume-backup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjabuwu%2Fdocker-volume-backup/lists"}