Runner - Agente github action basado en arm
754
A self-hosted GitHub Actions runner packaged for linux/arm64. Runs natively on Raspberry Pi, Orange Pi, Apple Silicon, AWS Graviton, and any other ARM64 machine — no QEMU, no emulation.
The image is rebuilt automatically every Monday to track the latest actions/runner release.
| Architecture | Tag |
|---|---|
linux/arm64 | latest, <version> |
services:
runner_arm:
image: neytor/runner_arm:latest
container_name: runner_arm
restart: always
environment:
- runner_token=YOUR_TOKEN
- runner_url=https://github.com/YOUR_ORG_OR_REPO
volumes:
- /var/run/docker.sock:/var/run/docker.sock
privileged: true
Tip: swap
environmentforenv_fileand point to a.envfile to keep secrets out of compose files.
docker run -d \
--name runner_arm \
--privileged \
-v /var/run/docker.sock:/var/run/docker.sock \
-e runner_token=YOUR_TOKEN \
-e runner_url=https://github.com/YOUR_ORG_OR_REPO \
neytor/runner_arm:latest
| Variable | Required | Default | Description |
|---|---|---|---|
runner_token | ✅ Yes | — | Registration token generated in GitHub |
runner_url | ✅ Yes | — | URL of the target org or repository |
runner_user | No | runner | OS user that owns the runner process |
runner_home_dir | No | /home/runner | Home directory for the runner user |
| Mount | When needed |
|---|---|
/var/run/docker.sock:/var/run/docker.sock | Only when your jobs need to run Docker commands |
Mount the socket and add
privileged: trueto give the runner access to the host Docker daemon.
Se recomienda pasar la variable runner_tokena través de un archivo.
Puedes ver nuevos eventos en https://www.yonier.com/
Content type
Image
Digest
sha256:0fdef332d…
Size
158 MB
Last updated
21 days ago
docker pull neytor/runner_arm