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/") |
|||
Line 1: | Line 1: | ||
https://testdriven.io/blog/github-actions-docker/ | https://testdriven.io/blog/github-actions-docker/ | ||
+ | |||
+ | |||
+ | 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 | ||
+ | ``` |
Revision as of 20:37, 28 August 2021
https://testdriven.io/blog/github-actions-docker/
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