mirror of
https://github.com/CPunch/openpunk-ansible.git
synced 2024-11-23 15:50:09 +00:00
22 lines
446 B
YAML
22 lines
446 B
YAML
services:
|
|
runner:
|
|
image: gitea/act_runner:latest
|
|
environment:
|
|
CONFIG_FILE: /config.yaml
|
|
GITEA_INSTANCE_URL: "https://git.{{ domain }}"
|
|
env_file:
|
|
- ./runner.env
|
|
volumes:
|
|
- ./config.yaml:/config.yaml
|
|
- ./data:/data
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
ports:
|
|
- 18088:18088
|
|
networks:
|
|
- runner-cache
|
|
|
|
networks:
|
|
runner-cache:
|
|
name: runner-cache
|
|
driver: bridge
|