Initial runner configuration

This commit is contained in:
Nils-Johan Gynther
2026-05-12 19:16:47 +02:00
parent aacfde24e5
commit 6fb89ee820
4 changed files with 195 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
services:
gitea-runner:
image: gitea/act_runner:latest
container_name: gitea-runner
restart: unless-stopped
environment:
GITEA_INSTANCE_URL: ${GITEA_INSTANCE_URL}
GITEA_RUNNER_REGISTRATION_TOKEN: ${GITEA_RUNNER_REGISTRATION_TOKEN}
GITEA_RUNNER_NAME: ${GITEA_RUNNER_NAME:-recipe-app}
GITEA_RUNNER_LABELS: ${GITEA_RUNNER_LABELS:-backend-node24:docker://node:24-bullseye,flutter-3-41:docker://ghcr.io/cirruslabs/flutter:stable}
volumes:
- ./data:/data
- /var/run/docker.sock:/var/run/docker.sock
restart: always