Files
alpine-server-setup/services/gitea/gitea-runner.service.toml
Maurice fbf33041d1 Fix
2025-10-04 19:41:55 +02:00

27 lines
542 B
TOML

user = "podman"
[service]
name = "gitea-runner"
image = "docker.io/gitea/act_runner:latest"
depend = ["gitea.service"]
[environment]
GITEA_INSTANCE_URL = "gitea"
GITEA_RUNNER_NAME = "Goofjes Runner"
CONFIG_FILE = "/config/config.yaml"
[[environment_secrets]]
name = "GITEA_RUNNER_REGISTRATION_TOKEN"
secret = "gitea-runner-registration-token"
[[volumes]]
source = "/var/containers/gitea/runner"
target = "/config"
[[mounts]]
typ = "bind"
source = "/run/podman/podman.sock"
target = "/var/run/docker.sock"
[[networks]]
name = "gitea-net"