Go to file
David Holdeman ad0aa9a780 copy start from tcardonne 2023-01-23 17:03:43 -06:00
Dockerfile use rusefi copy of toolchain, install netbase 2023-01-22 07:50:53 -06:00
README.md added label support using LABELS env variable 2021-11-17 16:38:26 -07:00
start.sh copy start from tcardonne 2023-01-23 17:03:43 -06:00

README.md

rusefi-ci

This dockerfile will automatically download and configure the github actions self-hosted runner

To run, first build the image with:

docker build -t rusefi-ci .

Then run the newly built image passing OWNER, REPO, and REG_TOKEN (time-limited github actions registration token)

docker run --detach \
 --ENV OWNER=ZHoob2004 \
 --ENV REPO=rusefi \
 --ENV REG_TOKEN=<PUT YO TOKEN HERE> \
 --ENV LABELS="linux,self-hosted" \
 rusefi-ci

Note: the LABELS environment variable is optional, and if omitted will use the default labels as determined by the github runner.

Add --restart=unless-stopped in order to have the container survive reboots

The container uses a persistent volume mounted at /opt/actions-runner. After initial startup, the container will skip registration unless the peristent volume is erased.