infrastructure/playbooks/roles/forgejo_runner/vars/main.yml
Tobias Reisinger 4104057771
Fix pre-commit hooks and move directories
roles/ and inventory/ are now in playbooks/
also fixed issues reported by ansible-lint
2024-10-14 18:31:36 +02:00

29 lines
749 B
YAML

---
forgejo_runner_env:
FORGEJO_INSTANCE_URL: https://git.serguzim.me/
FORGEJO_RUNNER_REGISTRATION_TOKEN:
DOCKER_HOST: tcp://docker-in-docker:2375
forgejo_runner_compose:
watchtower: true
image: code.forgejo.org/forgejo/runner:3.3.0
volumes:
- ./config.yml:/config/config.yml
- data:/data
file:
services:
app:
hostname: "{{ ansible_facts.hostname }}"
command: forgejo-runner --config /config/config.yml daemon
depends_on:
- docker-in-docker
links:
- docker-in-docker
docker-in-docker:
image: docker:dind
privileged: true
command: dockerd -H tcp://0.0.0.0:2375 --tls=false
networks:
default:
volumes:
data: