Difference between revisions of "Github Actions Runner Using Docker"
Jump to navigation
Jump to search
(Created page with "https://testdriven.io/blog/github-actions-docker/") |
|||
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
https://testdriven.io/blog/github-actions-docker/ | https://testdriven.io/blog/github-actions-docker/ | ||
+ | |||
+ | |||
+ | I don't know what exactly this does | ||
+ | - https://github.com/myoung34/docker-github-actions-runner | ||
+ | - https://github.com/tcardonne/docker-github-runner | ||
+ | - https://github.com/PasseiDireto/gh-runner | ||
+ | - https://github.com/evryfs/github-actions-runner-operator/blob/master/config/samples/garo_v1alpha1_githubactionrunner.yaml | ||
+ | |||
+ | |||
+ | LXD | ||
+ | ``` | ||
+ | lxc init --vm ubuntu:20.04 actions-runner-uvoo-docker -c limits.cpu=4 -c limits.memory=12GB | ||
+ | lxc config device override actions-runner-uvoo-docker root size=100GB | ||
+ | lxc start actions-runner-uvoo-docker | ||
+ | ``` | ||
+ | |||
+ | # Building | ||
+ | - https://docs.docker.com/ci-cd/github-actions/ |
Latest revision as of 02:42, 29 August 2021
https://testdriven.io/blog/github-actions-docker/
I don't know what exactly this does - https://github.com/myoung34/docker-github-actions-runner - https://github.com/tcardonne/docker-github-runner - https://github.com/PasseiDireto/gh-runner - https://github.com/evryfs/github-actions-runner-operator/blob/master/config/samples/garo_v1alpha1_githubactionrunner.yaml
LXD
lxc init --vm ubuntu:20.04 actions-runner-uvoo-docker -c limits.cpu=4 -c limits.memory=12GB lxc config device override actions-runner-uvoo-docker root size=100GB lxc start actions-runner-uvoo-docker