chore: remove test trigger file

This commit is contained in:
2025-10-31 04:14:18 +01:00
parent 403205315e
commit 6deca7838e
29 changed files with 4052 additions and 128 deletions

View File

@@ -11,8 +11,8 @@ runner:
# Maximum number of concurrent jobs
capacity: 1
# Timeout for a single job
timeout: 3h
# Timeout for a single job (increased for long-running deployments)
timeout: 6h
# Whether to enable debug mode (skip SSL verification for setup)
insecure: true
@@ -55,8 +55,8 @@ container:
# Default image if not specified in workflow
default_image: node:16-bullseye
# Docker host
docker_host: ""
# Docker host (use docker-dind without TLS since it's in isolated network)
docker_host: tcp://docker-dind:2375
# Valid volume paths that can be mounted
valid_volumes:

View File

@@ -1,5 +1,3 @@
version: '3.8'
services:
gitea-runner:
image: gitea/act_runner:latest
@@ -25,14 +23,11 @@ services:
container_name: gitea-runner-dind
restart: unless-stopped
privileged: true
environment:
- DOCKER_TLS_CERTDIR=/certs
volumes:
- docker-certs:/certs
- docker-data:/var/lib/docker
networks:
- gitea-runner
command: ["dockerd", "--host=unix:///var/run/docker.sock", "--host=tcp://0.0.0.0:2376", "--tlsverify"]
command: ["dockerd", "--host=unix:///var/run/docker.sock", "--host=tcp://0.0.0.0:2375"]
networks:
gitea-runner:
@@ -40,7 +35,5 @@ networks:
driver: bridge
volumes:
docker-certs:
name: gitea-runner-certs
docker-data:
name: gitea-runner-docker-data