homelab/gitea-runner/docker-compose.yml
gaia 12d9fa08db feat: add Gitea Actions runner configuration
- docker-compose.yml for act_runner
- config.yaml template
- register.sh script
- README with installation instructions
2026-04-09 01:49:14 -03:00

24 lines
584 B
YAML

version: '3.8'
services:
act_runner:
image: gitea/act_runner:latest
container_name: gitea-runner
restart: unless-stopped
environment:
- CONFIG_FILE=/runner/config.yaml
- INSTANCE_URL=https://gitea.hackerfortress.cc
- RUNNER_TOKEN=${RUNNER_TOKEN}
- RUNNER_NAME=gitea-runner-dockerino
- RUNNER_LABELS=gitea-runner-dockerino
volumes:
- ./data:/data
- ./config.yaml:/runner/config.yaml
- /var/run/docker.sock:/var/run/docker.sock
networks:
- homelab-network
networks:
homelab-network:
external: true