Awesome
Docker Container for GitHub Actions Runner
This project will build a Docker container with the specified version of the GitHub Actions Runner installed into it. It is built off of CentOS 8 as a base by default.
Building Container
You can build this container using the following command:
$ docker build -f [centos-actions-runner|ubuntu-actions-runner]/Dockerfile -t <container_tag> .
There are some configurable Build Arguments that you can pass in to modify the container build:
BASE
: default valuecentos:8
orubuntu-20.04
depending on the variant, but can be modified to specify an alternative base container image to start fromGH_RUNNER_VERSION
: default value '2.273.0' but can be used to specify an alternative version of the GitHub Actions runner
The Dockerfile has two lines that are hardcoded to use yum
so you will have to ensure that you use a base container that supports yum if you change it.
The GitHub Actions Runner will update itself to the latest version when it gets the first job sent to it if it is running an out of date version. The purpose of this parameter is to be able to set it to a value to test this upgrade scenario. A future version of this will access the releases endpoint to get the latest version and use that.
Running the Container
The container image supports a number of environment variables that you can pass to the container to control the registration of the self hosted runner with GitHub.
When registering the runner you have three options for the type of runner that you are wanting to create, enterprise, organization or repository self-hosted runner.
You need to provide one of the following environment variable URLs which allow the runner to be registered:
RUNNER_ENTERPRISE_URL
: The url for enterprise when registering a enterprise runner; e.g. https://github.com/enterprises/<enterprise_account_name>RUNNER_ORGANIZATION_URL
: The url for organization when registering an organization runner; e.g. https://github.com/octodemoRUNNER_REPOSITORY_URL
: The url for the repository when registering a repository; e.g. https://github.com/peter-murray/node-hue-api
A GitHub Personal Access Token is required so that it can be used to obtain a short lived access token for the runner to register with GitHub. The permissions required on the Personal Access Token will depend upon to the use case of the token;
- enterprise runner:
admin:enterprise
- organization runner:
admin:org
- repository runner:
repo
The token needs to be provided as the environment variable GITHUB_TOKEN
.
Optional environment variables:
GITHUB_SERVER
: The url for GHES server (if not connecting togithub.com
)RUNNER_NAME
: The name for the runner, must be unique if not specified will use the hostname of the container.RUNNER_LABELS
: A comma separated list of labels to associate with the runner over the default values. e.g.tester,container-runner,production
RUNNER_GROUP
: A runner group to associate the runner with in the organization or enterprise. If not specified will use thedefault
group.
Running using Docker commandline examples
-
Registering an Enterprise Runner;
$ docker run -d \ -e RUNNER_ENTERPRISE_URL=https://github.com/enterprises/octodemo \ -e GITHUB_TOKEN=<PAT_token_with_admin:enterprise> \ <container_name>
-
Registering an Organization Runner;
$ docker run -d \ -e RUNNER_ORGANIZATION_URL=https://github.com/octodemo \ -e GITHUB_TOKEN=<PAT_token_with_admin:org> \ <container_name>
-
Registering an Repository Runner;
$ docker run -d \ -e RUNNER_REPOSITORY_URL=https://github.com/octodemo/demo-repo \ -e GITHUB_TOKEN=<PAT_token_with_repo access> \ <container_name>