Sign inSign up

neytor/runner_arm

By neytor

Updated 21 days ago

Runner - Agente github action basado en arm

Image
Integration & delivery
Developer tools
Operating systems
0

754

neytor/runner_arm repository overview

runner_arm

Docker Pulls Docker Image Size Architecture Auto-updated

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.


Supported Architectures

ArchitectureTag
linux/arm64latest, <version>

Quick Start

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 environment for env_file and point to a .env file to keep secrets out of compose files.

docker cli
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

How to get the token

  1. Go to your repository or organization on GitHub.
  2. Navigate to Settings → Actions → Runners → New self-hosted runner.
  3. Select Linux and ARM64.
  4. Copy the token shown in the Configure section.

Environment Variables

VariableRequiredDefaultDescription
runner_token✅ YesRegistration token generated in GitHub
runner_url✅ YesURL of the target org or repository
runner_userNorunnerOS user that owns the runner process
runner_home_dirNo/home/runnerHome directory for the runner user

Volumes

MountWhen needed
/var/run/docker.sock:/var/run/docker.sockOnly when your jobs need to run Docker commands

Mount the socket and add privileged: true to give the runner access to the host Docker daemon.


Source

Se recomienda pasar la variable runner_tokena través de un archivo.

Try in PWD

Te invito a visitar mi web

Puedes ver nuevos eventos en https://www.yonier.com/

Tag summary

Content type

Image

Digest

sha256:0fdef332d

Size

158 MB

Last updated

21 days ago

docker pull neytor/runner_arm