{"id":24087112,"url":"https://github.com/0rax/docker-boinc-client","last_synced_at":"2026-05-26T16:36:18.594Z","repository":{"id":73949547,"uuid":"313085440","full_name":"0rax/docker-boinc-client","owner":"0rax","description":"A lightweight BOINC Client image for Docker","archived":false,"fork":false,"pushed_at":"2025-02-04T11:28:43.000Z","size":14,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-23T01:46:34.710Z","etag":null,"topics":["boinc","boinc-docker"],"latest_commit_sha":null,"homepage":"https://github.com/0rax/docker-boinc-client","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/0rax.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":"2020-11-15T17:30:06.000Z","updated_at":"2025-02-04T10:52:21.000Z","dependencies_parsed_at":null,"dependency_job_id":"203cbcc3-d313-451f-833c-29112f346d17","html_url":"https://github.com/0rax/docker-boinc-client","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0rax%2Fdocker-boinc-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0rax%2Fdocker-boinc-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0rax%2Fdocker-boinc-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0rax%2Fdocker-boinc-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0rax","download_url":"https://codeload.github.com/0rax/docker-boinc-client/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240977219,"owners_count":19887617,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["boinc","boinc-docker"],"created_at":"2025-01-10T03:01:54.967Z","updated_at":"2026-05-26T16:36:18.563Z","avatar_url":"https://github.com/0rax.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ghcr.io/0rax/boinc-client\n\nA lightweight and more up to date multi-arch image to run the BOINC client using Docker. It also includes some extra tools to debug any possible issue from within the image (such as `ping`, `dig` and `curl`).\n\nThis repository is based on some of the work done over at [BOINC/boinc-client-docker](https://github.com/BOINC/boinc-client-docker).\n\nThis Docker image currently support the following architectures: `amd64`, `arm32v7` \u0026 `arm64v8`.\n\n**NOTE**: Though based on the official BOINC Cliemt image, this image does not contain the `boinccmd_swarm` wrapper as Docker Swarm does not seem to used much anymore.\n\n## Running this image\n\nIf you have Docker running on any of the supported architecture, you should be able to run this image using the following command:\n\n```sh\ndocker run --detach \\\n  --name boinc \\\n  --publish 127.0.0.1:31416:31416 \\\n  --volume /opt/boinc:/var/lib/boinc \\\n  -e BOINC_GUI_RPC_PASSWORD=\"mypassword\" \\\n  -e BOINC_CMD_LINE_OPTIONS=\"--allow_remote_gui_rpc\" \\\n  ghcr.io/0rax/boinc-client:latest\n```\n\n## Configuration\n\n### BOINC Client\n\nThis image being largely inspired by the official [BOINC/boinc-client-docker](https://github.com/BOINC/boinc-client-docker) image, it can be configured in pretty much the same way using the following environment variables:\n\n| Parameter                | Default     | Function                                                                                                                                                          |\n| :----------------------- | :---------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `BOINC_GUI_RPC_PASSWORD` | `boinc`     | The password what you need to use, when you connect to the BOINC client.                                                                                          |\n| `BOINC_CMD_LINE_OPTIONS` | n/a         | Allow custom command line options to be passed to `/usr/bin/boinc`, adding `--allow_remote_gui_rpc` will allow all remote client to connect to your BOINC client. |\n| `BOINC_REMOTE_HOST`      | `127.0.0.1` | (Optional) Replace the `IP` with your IP address. In this case you can connect to the client only from this IP.                                                   |\n| `TZ`                     | `Etc/UTC`   | (Optional) Specify a time zone. The default is UTC +0.                                                                                                            |\n\n### Data Persistence\n\nTo enable BOINC configuration and database persistence, you should also attach a volume to `/var/lib/boinc` on this container.\n\n### Remote Access\n\nTo expose the RPC interface of the running BOINC CLIENT, you should expose port 31416 to the host you wish to control it with. A pretty good CLI client to do so is [`boinctui` available on SourceForge](https://sourceforge.net/projects/boinctui/).\n\n## Available tags\n\n| Image                                            | Tags                         | Architecture                  | Note                                   |\n| :----------------------------------------------- | :--------------------------- | :---------------------------- | :------------------------------------- |\n| [ghcr.io/0rax/boinc-client][tag:v8.0.4]         | `v8.0.4`, `latest`          | `amd64`, `arm32v7`, `arm64v8` | Multi arch image running BOINC v8.0.4 |\n| [ghcr.io/0rax/boinc-client][tag:v8.0.4-amd64]   | `v8.0.4-amd64`, `amd64`     | `amd64`                       | `amd64` image running BOINC v8.0.4    |\n| [ghcr.io/0rax/boinc-client][tag:v8.0.4-arm32v7] | `v8.0.4-arm32v7`, `arm32v7` | `arm32v7`                     | `arm32v7` image running BOINC v8.0.4  |\n| [ghcr.io/0rax/boinc-client][tag:v8.0.4-arm64v8] | `v8.0.4-arm64v8`, `arm64v8` | `arm64v8`                     | `arm64v8` image running BOINC v8.0.4  |\n\n[tag:v8.0.4]: https://github.com/0rax/docker-boinc-client/pkgs/container/boinc-client/348883648?tag=v8.0.4\n[tag:v8.0.4-amd64]: https://github.com/0rax/docker-boinc-client/pkgs/container/boinc-client/348871777?tag=v8.0.4-amd64\n[tag:v8.0.4-arm32v7]: https://github.com/0rax/docker-boinc-client/pkgs/container/boinc-client/348874866?tag=v8.0.4-arm32v7\n[tag:v8.0.4-arm64v8]: https://github.com/0rax/docker-boinc-client/pkgs/container/boinc-client/348883211?tag=v8.0.4-arm64v8\n\nA complete list of all current and past version can be seen in the [GitHub Packages page for this image](https://github.com/users/0rax/packages/container/package/boinc-client).\n\n## Build\n\n### Requirements\n\nBuilding images for a \"non-native\" platform requires the activation of some experimental features in Docker. Mainly the use of `docker buildx`, `docker manifest` and QEMU's `binfmt` integration.\n\nSee https://docs.docker.com/buildx/working-with-buildx/ and https://the-empire.systems/cross-architecture-docker-images as a starting point for your setup.\n\nWhat is important is that your current builder has an output similar to:\n\n```txt\n$ docker buildx inspect builder\nName:   builder\nDriver: docker-container\n\nNodes:\nName:      builder0\nEndpoint:  unix:///var/run/docker.sock\nStatus:    running\nPlatforms: linux/amd64, linux/arm64, linux/riscv64, linux/ppc64le, linux/s390x, linux/386, linux/arm/v7, linux/arm/v6\n```\n\nWhat's important here is that the `linux/amd64`, `linux/arm64` and `linux/arm/v7` platforms are listed.\n\nIf you are missing some platform out of the box, using [`tonistiigi/binfmt`](https://github.com/tonistiigi/binfmt) can be used to install the required emulators by running:\n\n```sh\ndocker run --privileged --rm tonistiigi/binfmt --install arm,arm64\n```\n\n### Building an image\n\nA script is available (see [`build.sh`](build.sh)) at the root of this repository to help release any new version of the image for all plateform, though if you want to build one image manually you can do so using one the following commands, depending on your target architecture.\n\n#### `amd64`\n\n```sh\ndocker buildx build --platform \"linux/amd64\" \\\n    -t boinc-client --build-arg \"BUILDARCH=amd64\" .\n```\n\n#### `arm32v7`\n\n```sh\ndocker buildx build --platform \"linux/arm/v7\" \\\n    -t boinc-client --build-arg \"BUILDARCH=arm32v7\" .\n```\n\n#### `arm64v8`\n\n```sh\ndocker buildx build --platform \"linux/arm64\" \\\n    -t boinc-client --build-arg \"BUILDARCH=arm64v8\" .\n```\n\n## License\n\n`docker-boinc-client` is LGPLv3 licensed. See [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0rax%2Fdocker-boinc-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0rax%2Fdocker-boinc-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0rax%2Fdocker-boinc-client/lists"}