fix typo
This commit is contained in:
parent
12830f74a6
commit
9d7ba80551
|
|
@ -28,7 +28,7 @@
|
|||
The docker image comes in three flavors:
|
||||
- `vegardit/gitea-act-runner:latest`: only contains the Gitea act_runner and executes workflows in containers of the docker engine running act_runner itself (DooD / Docker-out-of-Docker approach)
|
||||
- `vegardit/gitea-act-runner:dind-latest`: executes workflows using an embedded docker engine (DinD / Docker-in-Docker approach) providing better process isolation
|
||||
- `vegardit/gitea-act-runner:dind-rootless-latest`: executes workflows using an embedded docker engine (DinD / Docker-in-Docker approach) running the docker deamon as a non-root user [(Rootless mode)](https://docs.docker.com/engine/security/rootless/)
|
||||
- `vegardit/gitea-act-runner:dind-rootless-latest`: executes workflows using an embedded docker engine (DinD / Docker-in-Docker approach) running the docker daemon as a non-root user [(Rootless mode)](https://docs.docker.com/engine/security/rootless/)
|
||||
|
||||
### Docker Run
|
||||
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ runner:
|
|||
# The labels of a runner are used to determine which jobs the runner can run, and how to run them.
|
||||
# Like: ["macos-arm64:host", "ubuntu-latest:docker://node:16-bullseye", "ubuntu-22.04:docker://node:16-bullseye"]
|
||||
# If it's empty when registering, it will ask for inputting labels.
|
||||
# If it's empty when execute `deamon`, will use labels in `.runner` file.
|
||||
# If it's empty when execute `daemon`, will use labels in `.runner` file.
|
||||
#labels: []
|
||||
|
||||
cache:
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ fi
|
|||
|
||||
|
||||
#################################################################
|
||||
# start docker deamon (if installed = DinD)
|
||||
# start docker daemon (if installed = DinD)
|
||||
#################################################################
|
||||
if [[ -f /usr/bin/dockerd-rootless.sh ]]; then
|
||||
export DOCKER_MODE=dind-rootless
|
||||
|
|
|
|||
Loading…
Reference in New Issue