This repository has been archived on 2026-02-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
clawdbot_build/runner/docker-compose.yml
Aydent 7ec1eb9120
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 6m5s
Feat: Add Gitea Runner configuration
2026-01-28 23:07:30 +01:00

22 lines
784 B
YAML

version: "3.8"
services:
runner:
image: gitea/act_runner:latest
container_name: clawdbot-runner
restart: always
environment:
# URL of your Gitea instance
- GITEA_INSTANCE_URL=https://gitea.lemarechal.eu
# Token obtained from Gitea > Site Administration > Actions > Runners > Create Logger
# OR Repository > Settings > Actions > Runners
- GITEA_RUNNER_REGISTRATION_TOKEN=${RUNNER_TOKEN}
- GITEA_RUNNER_NAME=internal-runner
# Default labels
- GITEA_RUNNER_LABELS=ubuntu-latest:docker://node:22-bookworm,ubuntu-22.04:docker://node:16-bullseye
volumes:
# Persist configuration and data
- ./data:/data
# Allow launching sibling containers for builds
- /var/run/docker.sock:/var/run/docker.sock