Dockerized Github Action Runners
310
This is a dockerized version of github runner.
It will auto-register to the repository given as a ENV parameter on docker run (see docker-compose example).
# Linux
docker run --name "runner-dockergithubactionrunner" -e GH_OWNER=redek91 -e GH_REPOSITORY=DockerGithubActionRunner -e GH_TOKEN=*** redeaglekiller/github-action-runner:2.297.0-ubuntu22.04
# Windows
docker run --name "runner-dockergithubactionrunner" -e GH_OWNER=redek91 -e GH_REPOSITORY=DockerGithubActionRunner -e GH_TOKEN=*** redeaglekiller/github-action-runner:2.297.0-windowsltsc2022
services:
# Windows runner
runner-dockergithubactionrunner-windows:
platform: windows
deploy:
replicas: 5
image: redeaglekiller/github-action-runner-ubuntu:2.297.0-windowsltsc2022
environment:
- "GH_TOKEN=*****"
- "GH_OWNER=redek91"
- "GH_REPOSITORY=DockerGithubActionRunner"
# Linux runner
runner-dockergithubactionrunner-linux:
platform: linux
deploy:
replicas: 5
image: redeaglekiller/github-action-runner-ubuntu:2.297.0-ubuntu22.04
environment:
- "GH_TOKEN=*****"
- "GH_OWNER=redek91"
- "GH_REPOSITORY=DockerGithubActionRunner"
Content type
Image
Digest
sha256:b86ceddd5…
Size
530.5 MB
Last updated
over 3 years ago
docker pull redeaglekiller/github-action-runner:2.305.0-ubuntu22.04