{"id":16542983,"url":"https://github.com/binhex/arch-sabnzbd","last_synced_at":"2026-05-15T02:15:50.706Z","repository":{"id":18266500,"uuid":"21426851","full_name":"binhex/arch-sabnzbd","owner":"binhex","description":"Docker build script for Arch Linux base with SABnzbd","archived":false,"fork":false,"pushed_at":"2026-05-01T17:11:26.000Z","size":133,"stargazers_count":11,"open_issues_count":6,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-05-01T18:25:43.691Z","etag":null,"topics":["docker-image","downloader","sabnzbd","usenet"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/binhex.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2014-07-02T14:13:54.000Z","updated_at":"2026-05-01T17:11:04.000Z","dependencies_parsed_at":"2024-01-06T03:26:51.323Z","dependency_job_id":"f095a651-dbc5-48e5-ae4c-5a048eb57d79","html_url":"https://github.com/binhex/arch-sabnzbd","commit_stats":null,"previous_names":[],"tags_count":99,"template":false,"template_full_name":null,"purl":"pkg:github/binhex/arch-sabnzbd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/binhex%2Farch-sabnzbd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/binhex%2Farch-sabnzbd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/binhex%2Farch-sabnzbd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/binhex%2Farch-sabnzbd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/binhex","download_url":"https://codeload.github.com/binhex/arch-sabnzbd/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/binhex%2Farch-sabnzbd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32527138,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-02T01:12:54.858Z","status":"online","status_checked_at":"2026-05-02T02:00:05.923Z","response_time":132,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-image","downloader","sabnzbd","usenet"],"created_at":"2024-10-11T18:59:01.955Z","updated_at":"2026-05-02T08:02:32.743Z","avatar_url":"https://github.com/binhex.png","language":"Shell","funding_links":["https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif","https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick\u0026hosted_button_id=MM5E27UX6AUU4"],"categories":[],"sub_categories":[],"readme":"# Application\n\n[SABnzbd](http://sabnzbd.org/)\n\n## Description\n\nSABnzbd is an Open Source Binary Newsreader written in Python. SABnzbd makes\nUsenet as simple and streamlined as possible by automating everything we can.\nAll you have to do is add an .nzb. SABnzbd takes over from there, where it will\nbe automatically downloaded, verified, repaired, extracted and filed away with\nzero human interaction.\n\n## Build notes\n\nLatest stable SABnzbd release from Arch Linux AUR.\n\n## Usage\n\n```bash\ndocker run -d \\\n    -p 8080:8080 \\\n    -p 8090:8090 \\\n    --name=\u003ccontainer name\u003e \\\n    -v \u003cpath for data files\u003e:/data \\\n    -v \u003cpath for config files\u003e:/config \\\n    -v /etc/localtime:/etc/localtime:ro \\\n    -e HEALTHCHECK_COMMAND=\u003ccommand\u003e \\\n    -e HEALTHCHECK_ACTION=\u003caction\u003e \\\n    -e HEALTHCHECK_HOSTNAME=\u003chostname\u003e \\\n    -e UMASK=\u003cumask for created files\u003e \\\n    -e PUID=\u003cuid for user\u003e \\\n    -e PGID=\u003cgid for user\u003e \\\n    binhex/arch-sabnzbd\n```\n\nPlease replace all user variables in the above command defined by \u003c\u003e with the\ncorrect values.\n\n## Access application\n\n`http://\u003chost ip\u003e:8080`\n\n## Example\n\n```bash\ndocker run -d \\\n    -p 8080:8080 \\\n    -p 8090:8090 \\\n    --name=SABnzbd \\\n    -v /root/docker/data:/data \\\n    -v /apps/docker/sabnzbd:/config \\\n    -v /etc/localtime:/etc/localtime:ro \\\n    -e UMASK=000 \\\n    -e PUID=0 \\\n    -e PGID=0 \\\n    binhex/arch-sabnzbd\n```\n\n## Notes\n\nUser ID (PUID) and Group ID (PGID) can be found by issuing the following command\nfor the user you want to run the container as:-\n\n```bash\nid \u003cusername\u003e\n```\n\n___\nIf you appreciate my work, then please consider buying me a beer  :D\n\n[![PayPal donation](https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick\u0026hosted_button_id=MM5E27UX6AUU4)\n\n[Documentation](https://github.com/binhex/documentation) | [Support forum](http://forums.unraid.net/index.php?topic=45821.0)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbinhex%2Farch-sabnzbd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbinhex%2Farch-sabnzbd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbinhex%2Farch-sabnzbd/lists"}