Add gitea_runner

This commit is contained in:
2025-07-02 22:49:29 +05:30
parent 9983125878
commit 87f00996ce

View File

@@ -0,0 +1,16 @@
services:
gitea_runner:
image: docker.io/gitea/act_runner:nightly
container_name: gitea_runner
environment:
CONFIG_FILE: /config.yaml
GITEA_INSTANCE_URL: "${INSTANCE_URL}"
GITEA_RUNNER_REGISTRATION_TOKEN: "${REGISTRATION_TOKEN}"
GITEA_RUNNER_NAME: "${RUNNER_NAME}"
volumes:
- ./config.yaml:/config.yaml
- ./data:/data
- /var/run/docker.sock:/var/run/docker.sock
ports:
- 8010:8010 # Cache port (Any free port)
restart: unless-stopped