{"id":30595051,"url":"https://github.com/haliliceylan/aria2c-docker","last_synced_at":"2026-02-11T23:08:45.666Z","repository":{"id":310480846,"uuid":"1040018839","full_name":"haliliceylan/aria2c-docker","owner":"haliliceylan","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-18T11:29:07.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-29T21:08:18.717Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","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/haliliceylan.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}},"created_at":"2025-08-18T10:36:21.000Z","updated_at":"2025-08-18T11:29:10.000Z","dependencies_parsed_at":"2025-08-18T12:27:19.343Z","dependency_job_id":"88b2ed75-8d9d-46b2-bb94-f77a4b3c06d5","html_url":"https://github.com/haliliceylan/aria2c-docker","commit_stats":null,"previous_names":["haliliceylan/aria2c-docker"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/haliliceylan/aria2c-docker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haliliceylan%2Faria2c-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haliliceylan%2Faria2c-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haliliceylan%2Faria2c-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haliliceylan%2Faria2c-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/haliliceylan","download_url":"https://codeload.github.com/haliliceylan/aria2c-docker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haliliceylan%2Faria2c-docker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29349261,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T20:11:40.865Z","status":"ssl_error","status_checked_at":"2026-02-11T20:10:41.637Z","response_time":97,"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":[],"created_at":"2025-08-29T20:35:31.504Z","updated_at":"2026-02-11T23:08:45.638Z","avatar_url":"https://github.com/haliliceylan.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# aria2c-docker\n\nA lightweight Docker image for aria2c download utility with automatic GitHub Actions build and push to GitHub Container Registry.\n\n## Features\n\n- ✅ Lightweight Alpine Linux base\n- ✅ Non-root user for security\n- ✅ RPC interface enabled by default\n- ✅ Multi-architecture support (amd64, arm64)\n- ✅ Automatic builds on push\n- ✅ Published to GitHub Container Registry\n\n## Usage\n\n### Basic Download\n```bash\ndocker run --rm -it \\\n  --user \"$(id -u):$(id -g)\" \\\n  -v \"$(pwd)\":/downloads \\\n  ghcr.io/haliliceylan/aria2c-docker:latest \\\n  \"https://example.com/file.zip\"\n```\n\n### With RPC Server (Web Interface Compatible)\n```bash\ndocker run -d \\\n  --name aria2c \\\n  --user \"$(id -u):$(id -g)\" \\\n  -p 6800:6800 \\\n  -v \"$(pwd)\":/downloads \\\n  --restart unless-stopped \\\n  ghcr.io/haliliceylan/aria2c-docker:latest\n```\n\n### Custom Configuration\nIf you want to use your own aria2.conf file:\n```bash\ndocker run -d \\\n  --name aria2c \\\n  --user \"$(id -u):$(id -g)\" \\\n  -p 6800:6800 \\\n  -v \"$(pwd)\":/downloads \\\n  -v \"/path/to/your/aria2.conf\":/tmp/aria2.conf \\\n  --restart unless-stopped \\\n  ghcr.io/haliliceylan/aria2c-docker:latest \\\n  --conf-path=/tmp/aria2.conf\n```\n\n## Useful Aliases\n\nAdd these to your `~/.bashrc` or `~/.zshrc` for convenient usage:\n\n```bash\n# Basic aria2c alias with proper user mapping and TTY for real-time updates\nalias aria2c='docker run --rm -it \\\n  --user \"$(id -u):$(id -g)\" \\\n  -v \"$(pwd)\":/downloads \\\n  ghcr.io/haliliceylan/aria2c-docker:latest'\n\n# Daemon mode with RPC and proper user mapping\nalias aria2c-daemon='docker run -d \\\n  --name aria2c \\\n  --user \"$(id -u):$(id -g)\" \\\n  -p 6800:6800 \\\n  -v \"$(pwd)\":/downloads \\\n  --restart unless-stopped \\\n  ghcr.io/haliliceylan/aria2c-docker:latest'\n\n# Stop daemon\nalias aria2c-stop='docker stop aria2c \u0026\u0026 docker rm aria2c'\n```\n\n## Building Locally\n\n```bash\ngit clone https://github.com/haliliceylan/aria2c-docker.git\ncd aria2c-docker\ndocker build -t aria2c-local .\n```\n\n## Web Interface\n\nYou can use aria2c with web interfaces like:\n- [AriaNg](https://github.com/mayswind/AriaNg)\n- [webui-aria2](https://github.com/ziahamza/webui-aria2)\n\nJust connect to `http://localhost:6800/jsonrpc` when running in daemon mode.\n\n## License\n\nThis project is open source and available under the MIT License.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhaliliceylan%2Faria2c-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhaliliceylan%2Faria2c-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhaliliceylan%2Faria2c-docker/lists"}