You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Parodi, Eugenio 🌶 e5a3efc4fa chore: updated self-hosted actions dockerfile 12 months ago
..
Dockerfile chore: updated self-hosted actions dockerfile 12 months ago
README.md chore: added dockerfile to create github runners 12 months ago
script.sh chore: added dockerfile to create github runners 12 months ago

README.md

Build the Docker

_GITHUB_TOKEN=<your_github_runner_token>
docker build --build-arg RUNNER_TOKEN=${_GITHUB_TOKEN} -t github-runner .

Run the runner

you can spawn as many runner as you want just changing the name

_GITHUB_TOKEN=<your_github_runner_token>
_RUNNER_NAME=runner_X
docker run -it --rm github-runner ${_GITHUB_TOKEN} ${_RUNNER_NAME}

note:

_GITHUB_TOKEN=<your_github_runner_token>
./config.sh \
    --url https://github.com/ceccopierangiolieugenio/pyTermTk \
    --work _work --replace \
    --runnergroup Default \
    --name test-sh \
    --token ${_GITHUB_TOKEN} \
    --labels "self-hosted,Linux,ARM64"