trigger build
This commit is contained in:
parent
b6115e9625
commit
c5e4cc673a
1 changed files with 4 additions and 0 deletions
|
@ -216,6 +216,7 @@ podman run --rm -it \
|
||||||
|
|
||||||
Register runner.
|
Register runner.
|
||||||
example value for labels can be `ubuntu-latest:docker://quay.io/podman/stable`.
|
example value for labels can be `ubuntu-latest:docker://quay.io/podman/stable`.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
podman run --rm -it \
|
podman run --rm -it \
|
||||||
-v /root/act-runner/runner/:/etc/runner:z,rw \
|
-v /root/act-runner/runner/:/etc/runner:z,rw \
|
||||||
|
@ -225,6 +226,7 @@ podman run --rm -it \
|
||||||
```
|
```
|
||||||
|
|
||||||
Start container acting as podman/docker (use `--init` to get rid of zombies):
|
Start container acting as podman/docker (use `--init` to get rid of zombies):
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
podman run --rm -d --privileged --name gitea-podman \
|
podman run --rm -d --privileged --name gitea-podman \
|
||||||
--init \
|
--init \
|
||||||
|
@ -235,6 +237,7 @@ podman run --rm -d --privileged --name gitea-podman \
|
||||||
```
|
```
|
||||||
|
|
||||||
Now start container with runner
|
Now start container with runner
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
podman run --rm -d --name gitea-runner \
|
podman run --rm -d --name gitea-runner \
|
||||||
-v /root/act-runner/runner/:/etc/runner:rw,Z \
|
-v /root/act-runner/runner/:/etc/runner:rw,Z \
|
||||||
|
@ -244,6 +247,7 @@ podman run --rm -d --name gitea-runner \
|
||||||
```
|
```
|
||||||
|
|
||||||
Now generate systemd services for these containers
|
Now generate systemd services for these containers
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
podman generate systemd --new --name gitea-podman > /etc/systemd/system/gitea-podman.service;
|
podman generate systemd --new --name gitea-podman > /etc/systemd/system/gitea-podman.service;
|
||||||
podman generate systemd --new --name gitea-runner > /etc/systemd/system/gitea-runner.service;
|
podman generate systemd --new --name gitea-runner > /etc/systemd/system/gitea-runner.service;
|
||||||
|
|
Loading…
Reference in a new issue