{"id":21433762,"url":"https://github.com/femiwiki/backupbot","last_synced_at":"2026-02-21T08:02:08.000Z","repository":{"id":40426099,"uuid":"168842720","full_name":"femiwiki/backupbot","owner":"femiwiki","description":":robot: 페미위키 MySQL 백업봇","archived":false,"fork":false,"pushed_at":"2025-08-31T08:54:51.000Z","size":68,"stargazers_count":1,"open_issues_count":4,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-31T10:23:34.616Z","etag":null,"topics":["bot","docker-image","mysql"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/femiwiki.png","metadata":{"funding":{"patreon":"femiwiki"},"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":"COPYRIGHT","agents":null,"dco":null,"cla":null}},"created_at":"2019-02-02T14:57:36.000Z","updated_at":"2025-08-31T08:54:53.000Z","dependencies_parsed_at":"2024-11-03T05:20:00.302Z","dependency_job_id":"0e604142-40de-49ee-a27e-f26c56824f82","html_url":"https://github.com/femiwiki/backupbot","commit_stats":{"total_commits":52,"total_committers":4,"mean_commits":13.0,"dds":0.3653846153846154,"last_synced_commit":"cad2f3fb10bc39c3df111d59a5497ae6c59dcdd9"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/femiwiki/backupbot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/femiwiki%2Fbackupbot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/femiwiki%2Fbackupbot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/femiwiki%2Fbackupbot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/femiwiki%2Fbackupbot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/femiwiki","download_url":"https://codeload.github.com/femiwiki/backupbot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/femiwiki%2Fbackupbot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29676981,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T06:23:40.028Z","status":"ssl_error","status_checked_at":"2026-02-21T06:23:39.222Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["bot","docker-image","mysql"],"created_at":"2024-11-22T23:29:46.081Z","updated_at":"2026-02-21T08:02:07.983Z","avatar_url":"https://github.com/femiwiki.png","language":"Dockerfile","funding_links":["https://patreon.com/femiwiki"],"categories":[],"sub_categories":[],"readme":"# backupbot [![Docker Badge]][docker hub]\n\nA Docker image for dumping [MySQL] that contains [MediaWiki] data and uploading to [AWS S3] periodically. This image is designed for [FemiWiki].\n\n```bash\n# Configuring network is required\n\n# Passing username and password as environment variables\ndocker run --detach \\\n  --name backupbot \\\n  --restart always \\\n  -e 'DB_USERNAME=xxxxxxxx' \\\n  -e 'DB_PASSWORD=xxxxxxxx' \\\n  femiwiki/backupbot\n\n# Alternatively, you can provide LocalSettings.php instead\ndocker run --detach \\\n  --name backupbot \\\n  --restart always \\\n  -v $PWD/LocalSettings.php:/a/LocalSettings.php \\\n  femiwiki/backupbot\n```\n\n## Environment variables\n\n- `DB_SERVER`: The user name passed to access the database. If `/a/LocalSettings.php` is exist, this will be ignored. Default to `localhost`.\n- `DB_USERNAME`: The user name passed to access the database. If `/a/LocalSettings.php` is exist, this will be ignored.\n- `DB_PASSWORD`: The password passed to access the database. If `/a/LocalSettings.php` is exist, this will be ignored.\n- `LOCAL_SETTINGS`: The absolute path to LocalSettings.php that declares `$wgDBserver`, `$wgDBuser` and `$wgDBpassword`. Default to `/a/LocalSettings.php`.\n\n## Restoring a wiki from backup\n\n```sh\n# Replace DB_USERNAME and DB_PASSWORD with actual values\nmysql -uDB_USERNAME -pDB_PASSWORD \u003c dump_of_wikidb.sql\n```\n\nRun [rebuildall.php](https://www.mediawiki.org/wiki/Manual:Rebuildall.php) script.\nSee [Restoring a wiki from backup](https://www.mediawiki.org/wiki/Manual:Restoring_a_wiki_from_backup) for details.\n\n\u0026nbsp;\n\n---\n\nThe source code of _backupbot_ is primarily distributed under the terms of\nthe [GNU Affero General Public License v3.0] or any later version. See\n[COPYRIGHT] for details.\n\n[docker badge]: https://badgen.net/badge/icon/docker?icon=docker\u0026label\n[docker hub]: https://github.com/orgs/femiwiki/packages/container/backupbot\n[mysql]: https://www.mysql.com/\n[mediawiki]: https://www.mediawiki.org/\n[femiwiki]: https://femiwiki.com\n[localsettings.php]: https://www.mediawiki.org/wiki/Manual:LocalSettings.php\n[aws s3]: https://aws.amazon.com/s3/\n[gnu affero general public license v3.0]: LICENSE\n[copyright]: COPYRIGHT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffemiwiki%2Fbackupbot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffemiwiki%2Fbackupbot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffemiwiki%2Fbackupbot/lists"}