25 lines
837 B
YAML
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:
|