Files
homelab-optimized/hosts/synology/calypso/gitea-runner.yaml
Gitea Mirror Bot ba3595e6a7
Some checks failed
Documentation / Build Docusaurus (push) Failing after 9s
Documentation / Deploy to GitHub Pages (push) Has been skipped
Sanitized mirror from private repository - 2026-03-08 09:25:17 UTC
2026-03-08 09:25:17 +00:00

25 lines
837 B
YAML

# Gitea Actions Runner for Calypso
# This runner enables CI/CD workflows for git.vish.gg
#
# IMPORTANT: If you need to re-register, get a new token from:
# https://git.vish.gg/Vish/homelab/settings/actions/runners
# Then update GITEA_RUNNER_REGISTRATION_TOKEN below
version: "3"
services:
gitea-runner:
image: gitea/act_runner:latest
container_name: gitea-runner
restart: unless-stopped
environment:
- GITEA_INSTANCE_URL=https://git.vish.gg
- GITEA_RUNNER_REGISTRATION_TOKEN=${GITEA_RUNNER_TOKEN:-CHANGE_ME}
- GITEA_RUNNER_NAME=calypso-runner
- GITEA_RUNNER_LABELS=ubuntu-latest:docker://node:20-bookworm,ubuntu-22.04:docker://ubuntu:22.04,python:docker://python:3.11
volumes:
- gitea-runner-data:/data
- /var/run/docker.sock:/var/run/docker.sock
volumes:
gitea-runner-data: