blob: 9131559ed542c91258e0748d2f28dbce5d7ccb23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
The following assumes:
* a docker server runs on the host
* the docker group of the host is GID 133
* a `.runner` file exists in /tmp/data
* a `runner-config.yml` file exists in /tmp/data
```sh
docker run -v /var/run/docker.sock:/var/run/docker.sock -v /tmp/data:/data --user 1000:133 --rm code.forgejo.org/forgejo/runner:5.0.4 forgejo-runner --config runner-config.yaml daemon
```
The workflows will run using the host docker srever
|