diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..6593de2 --- /dev/null +++ b/compose.yaml @@ -0,0 +1,15 @@ +services: + runner: + image: gitea/act_runner:nightly + environment: + - "CONFIG_FILE=/config.yaml" + - "GITEA_INSTANCE_URL=${GITEA_INSTANCE_URL}" + - "GITEA_RUNNER_REGISTRATION_TOKEN=${GITEA_RUNNER_REGISTRATION_TOKEN}" + - "GITEA_RUNNER_NAME=local-cached" + volumes: + - ./runner/config.yaml:/config.yaml + - ./runner/data:/data + - ./runner/cache:/root/.cache + - /run/podman/podman.sock:/var/run/docker.sock + ports: + - 30080:30080 \ No newline at end of file