You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-9Lines changed: 3 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# GitHub Actions Runner
2
2
3
-
Built on `ubuntu:20.04`, configured for rootless dind 🎉, impossible without valuable advice from @kenichi-shibata and @sidick and work by @myoung34.
3
+
Built on `ubuntu:20.04`, configured for rootless dind 🎉, impossible without invaluable advice from @kenichi-shibata and @sidick and work by @msyea.
4
4
## Inspiration from
5
5
*https://github.com/cruizba/ubuntu-dind showed me it was possible on ubuntu
6
6
*https://github.com/myoung34/docker-github-actions-runner showed it running docker outside docker - inspired API and wrote some README - rights theirs
@@ -27,18 +27,12 @@ This will run the [new self-hosted github actions runners](https://help.github.c
27
27
|`ORG_RUNNER`| Only valid if using `ACCESS_TOKEN`. This will set the runner to an org runner. Default is 'false'. Valid values are 'true' or 'false'. If this is set to true you must also set `ORG_NAME` and makes `REPO_URL` unneccesary |
28
28
|`ORG_NAME`| The organization name for the runner to register under. Requires `ORG_RUNNER` to be 'true'. No default value. |
29
29
|`LABELS`| A comma separated string to indicate the labels. Default is 'default' |
30
-
|`REPO_URL`| If using a non-organization runner this is the full repository url to register under such as 'https://github.com/myoung34/repo'|
30
+
|`REPO_URL`| If using a non-organization runner this is the full repository url to register under such as 'https://github.com/msyea/repo'|
31
31
|`RUNNER_TOKEN`| If not using a PAT for `ACCESS_TOKEN` this will be the runner token provided by the Add Runner UI (a manual process). Note: This token is short lived and will change frequently. `ACCESS_TOKEN` is likely preferred. |
32
32
|`RUNNER_WORKDIR`| The working directory for the runner. Runners on the same host should not share this directory. Default is '/_work'. This must match the source path for the bind-mounted volume at RUNNER_WORKDIR, in order for container actions to access files. |
33
33
|`RUNNER_GROUP`| Name of the runner group to add this runner to (defaults to the default runner group) |
34
34
|`GITHUB_HOST`| Optional URL of the Github Enterprise server e.g github.mycompany.com. Defaults to `github.com`. |
35
35
36
-
## Examples ##
37
-
38
-
### Note ###
39
-
40
-
If you're using a RHEL based OS with SELinux, add `--security-opt=label=disable` to prevent [permission denied](https://github.com/myoung34/docker-github-actions-runner/issues/9)
0 commit comments