{"id":16542959,"url":"https://github.com/binhex/arch-gonic","last_synced_at":"2026-06-09T05:03:50.271Z","repository":{"id":240934938,"uuid":"803803706","full_name":"binhex/arch-gonic","owner":"binhex","description":null,"archived":false,"fork":false,"pushed_at":"2026-03-18T09:12:13.000Z","size":35,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-19T00:45:43.576Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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":"2024-05-21T12:16:43.000Z","updated_at":"2026-03-18T09:12:16.000Z","dependencies_parsed_at":"2024-07-15T12:16:35.949Z","dependency_job_id":"a831f89a-8a2a-42b4-9cb9-b27041ce58e0","html_url":"https://github.com/binhex/arch-gonic","commit_stats":null,"previous_names":["binhex/arch-gonic"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/binhex/arch-gonic","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/binhex%2Farch-gonic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/binhex%2Farch-gonic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/binhex%2Farch-gonic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/binhex%2Farch-gonic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/binhex","download_url":"https://codeload.github.com/binhex/arch-gonic/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/binhex%2Farch-gonic/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34092266,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-09T02:00:06.510Z","response_time":63,"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":[],"created_at":"2024-10-11T18:58:58.868Z","updated_at":"2026-06-09T05:03:50.266Z","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[Gonic website](https://github.com/sentriz/gonic)\n\n## Description\n\nFree-software subsonic server API implementation, supporting its many clients.\n\n## Build notes\n\nLatest stable Gonic release from Arch User Repository (AUR).\n\n## Usage\n\n```bash\ndocker run -d \\\n    -p 4747:4747 \\\n    --name=\u003ccontainer name\u003e \\\n    -v \u003cpath for media files\u003e:/media \\\n    -v \u003cpath for config files\u003e:/config \\\n    -v /etc/localtime:/etc/localtime:ro \\\n    -e GONIC_MUSIC_PATH=\u003cpath to music files\u003e \\\n    -e GONIC_PODCAST_PATH=\u003cpath to podcast files\u003e \\\n    -e GONIC_PLAYLISTS_PATH=\u003cpath to playlist files\u003e \\\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-gonic\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:4747`\n\nDefault username/password: `admin/admin`\n\n## Example\n\n```bash\ndocker run -d \\\n    -p 4747:4747 \\\n    --name=gonic \\\n    -v /media/music:/media \\\n    -v /apps/docker/gonic:/config \\\n    -v /etc/localtime:/etc/localtime:ro \\\n    -e GONIC_MUSIC_PATH='/media' \\\n    -e GONIC_PODCAST_PATH='/config/gonic/podcasts' \\\n    -e GONIC_PLAYLISTS_PATH='/config/gonic/playlists' \\\n    -e UMASK=000 \\\n    -e PUID=0 \\\n    -e PGID=0 \\\n    binhex/arch-gonic\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](https://forums.unraid.nets/topic/64638-support-binhex-nzbhydra2/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbinhex%2Farch-gonic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbinhex%2Farch-gonic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbinhex%2Farch-gonic/lists"}