This project will build an Ubuntu Docker container with the GitHub Actions Runner installed into it.
You can build this container using the following command:
$ docker build -f Dockerfile -t <container_tag> .
There are some configurable Build Arguments that you can pass in to modify the container build:
BASE
: default valueubuntu:focal
but can be modified to specify an alternative base container image to start from.GH_RUNNER_VERSION
: default value '2.285.1' but can be used to specify an alternative version of the GitHub Actions runner.
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.
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 github.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.
-
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>