infrastructure/ansible/roles/gitea_runner/files/docker-compose.yml

16 lines
448 B
YAML
Raw Normal View History

version: "2.3"
services:
act-runner:
image: vegardit/gitea-act-runner:latest
network_mode: host
volumes:
- ./data:/data
- /var/run/docker.sock:/var/run/docker.sock:ro
environment:
- TZ={{ timezone }}
2023-03-30 22:56:35 +01:00
- GITEA_INSTANCE_URL=https://git.theorangeone.net
- GITEA_RUNNER_REGISTRATION_TOKEN={{ gitea_runner_registration_token }}
- GITEA_RUNNER_NAME={{ ansible_hostname }}
restart: unless-stopped