- docker-compose.yml for act_runner - config.yaml template - register.sh script - README with installation instructions
24 lines
584 B
YAML
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
|