homelab/gitea-runner/docker-compose.yml
gaia 775ad3fcd6 fix: runner runs on Hestia, not Dockerino
- Changed network_mode to host (local execution)
- Updated labels and names to gitea-runner-hestia
- Fixed README references
- Removed external network dependency
2026-04-09 01:55:44 -03:00

19 lines
514 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-hestia
- RUNNER_LABELS=gitea-runner-hestia
volumes:
- ./data:/data
- ./config.yaml:/runner/config.yaml
- /var/run/docker.sock:/var/run/docker.sock
network_mode: host