first commit

This commit is contained in:
编码猿
2025-10-07 20:17:19 +08:00
commit 61b79f6528
33 changed files with 1292 additions and 0 deletions

17
act-runner.yml Normal file
View File

@@ -0,0 +1,17 @@
version: '3.8'
services:
gitea-actions-runner:
image: gitea/act_runner:latest
container_name: shared-act-runner
restart: unless-stopped
volumes:
- runner-vol:/data
- /var/run/docker.sock:/var/run/docker.sock
environment:
- GITEA_INSTANCE_URL=https://git.bmycode.help
- GITEA_RUNNER_REGISTRATION_TOKEN=HReAwXfHVogolZk43yt380s7inKtoeHv0C0lVBt1
- GITEA_RUNNER_LABELS=ubuntu-latest:docker://docker.gitea.com/runner-images:ubuntu-latest
volumes:
runner-vol: