- Changed network_mode to host (local execution) - Updated labels and names to gitea-runner-hestia - Fixed README references - Removed external network dependency
19 lines
514 B
YAML
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
|