33 lines
1.2 KiB
Django/Jinja
33 lines
1.2 KiB
Django/Jinja
---
|
|
# https://gitea.com/gitea/act_runner/src/branch/main/examples/docker-compose
|
|
version: "3.7"
|
|
services:
|
|
runner:
|
|
container_name: act-runner
|
|
image: gitea/act_runner
|
|
restart: always
|
|
volumes:
|
|
- act_runner_data:/data
|
|
- ./config.yml:/config.yml
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
environment:
|
|
GITEA_INSTANCE_URL: https://git.mgrote.net
|
|
GITEA_RUNNER_REGISTRATION_TOKEN: "{{ lookup('viczem.keepass.keepass', 'gitea_act_runner_token', 'password') }}" # only used on first start, https://git.mgrote.net/admin/actions/runners
|
|
GITEA_RUNNER_NAME: "docker10-act-runner"
|
|
CONFIG_FILE: /config.yml
|
|
|
|
volumes:
|
|
act_runner_data:
|
|
|
|
|
|
|
|
# Volumes (including bind mounts) can be mounted to containers. Glob syntax is supported, see https://github.com/gobwas/glob
|
|
# You can specify multiple volumes. If the sequence is empty, no volumes can be mounted.
|
|
# For example, if you only allow containers to mount the `data` volume and all the json files in `/src`, you should change the config to:
|
|
# valid_volumes:
|
|
# - data
|
|
# - /src/*.json
|
|
# If you want to allow any volume, please use the following configuration:
|
|
# valid_volumes:
|
|
# - '**'
|
|
valid_volumes: []
|