{"id":17126226,"url":"https://github.com/truebit/docker-alpine-aria2-latest","last_synced_at":"2026-01-31T04:01:41.805Z","repository":{"id":141945706,"uuid":"208552278","full_name":"truebit/docker-alpine-aria2-latest","owner":"truebit","description":"alpine edge + aria2 master latest","archived":false,"fork":false,"pushed_at":"2020-09-05T13:50:02.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-06T06:02:51.912Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","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/truebit.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}},"created_at":"2019-09-15T06:31:52.000Z","updated_at":"2020-09-05T13:50:04.000Z","dependencies_parsed_at":"2023-03-13T10:27:10.584Z","dependency_job_id":null,"html_url":"https://github.com/truebit/docker-alpine-aria2-latest","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/truebit/docker-alpine-aria2-latest","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/truebit%2Fdocker-alpine-aria2-latest","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/truebit%2Fdocker-alpine-aria2-latest/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/truebit%2Fdocker-alpine-aria2-latest/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/truebit%2Fdocker-alpine-aria2-latest/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/truebit","download_url":"https://codeload.github.com/truebit/docker-alpine-aria2-latest/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/truebit%2Fdocker-alpine-aria2-latest/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28928641,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T02:59:34.861Z","status":"ssl_error","status_checked_at":"2026-01-31T02:59:05.369Z","response_time":128,"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":"2024-10-14T18:47:21.873Z","updated_at":"2026-01-31T04:01:41.792Z","avatar_url":"https://github.com/truebit.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"Aria2 latest 'master' branch on Alpine Linux 'edge'\n-----------------------------------\n\n### 0.镜像介绍\n使用alpine Linux edge分支+aria2 master分支编译。即最新鲜的稳定代码。偏安全向和尝鲜向。\n\n主要面对希望尝鲜人群以及因为aria2长期不发新版本而无法使用某些功能的用户（比如[TLS v1.3支持](https://unix.stackexchange.com/a/523465/196243)）\n\n本镜像只包含aria2，不包含其前端。前端可选择[AriaNG](https://ariang.mayswind.net/latest/#!/settings/ariang)或者[WebUI-Aria2](https://ziahamza.github.io/webui-aria2/)。推荐后者（因其托管在GitHub上，安全性更有保障）\n\n### 1.使用\n1. `docker pull truebit/alpine-aria2-latest`\n2. `docker run -e UID=0 -e GID=0 -e \nRPC_SECRET=exampleSecret -e RPC_SECURE=true -v /volume1/Downloads:/data -v /volume2/docker/conf/key:/app/conf/key -v /volume2/docker/conf:/app/conf -p 6888:6800 truebit/alpine-aria2-latest`\n3. 或者自己执行命令：`docker run  truebit/alpine-aria2-latest aria2c --help`\n\n群晖设置请移步：[https://zhuanlan.zhihu.com/p/82595126](https://zhuanlan.zhihu.com/p/82595126)\n\n### 2.环境参数说明\n\n* GID和UID：宿主机的gid和uid，可使用命令`id`得到。不设置可能导致下载文件夹无法写入等问题\n* RPC_SECRET：RPC链接的密码令牌（即token），任意字符。\n* RPC_SECURE：`true`或者其他。true时开启RPC HTTPS\n* ENABLE_AUTH: `true`或者其他。true时下面的RPC_USER/PASSWORD生效\n* RPC_USER：RPC连接用户名，不建议使用。推荐使用RPC_SECRET\n* RPC_PASSWORD：与RPC_USER同时使用。不推荐使用，推荐RPC_SECRET\n\n### 3.卷（volume）挂载说明\n\n* `/data`：下载文件夹\n* `/app/conf/key`：RPC HTTPS证书文件夹。文件夹中证书名须为`aria2.cer`和`aria2.key`\n* `/app/conf`：aria2配置文件夹。如不挂载，则使用docker内部配置\n\n### 4.端口说明\n默认暴露6800端口，自行映射到宿主机上\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftruebit%2Fdocker-alpine-aria2-latest","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftruebit%2Fdocker-alpine-aria2-latest","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftruebit%2Fdocker-alpine-aria2-latest/lists"}