first commit
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 12s
Build Vue3 App / build (push) Has been cancelled

This commit is contained in:
编码猿
2025-10-04 21:16:45 +08:00
commit ce444b098e
33 changed files with 3986 additions and 0 deletions

26
docker-compose.yml Normal file
View File

@@ -0,0 +1,26 @@
version: '3.8'
services:
gitea-actions-runner:
image: gitea/act_runner:latest
container_name: gitea-act-runner
restart: unless-stopped
volumes:
- runner-data:/data
- /var/run/docker.sock:/var/run/docker.sock
working_dir: /data # 关键:设置工作目录为卷挂载点
environment:
- GITEA_INSTANCE_URL=https://git.bmycode.help # 你的 Gitea 地址
- GITEA_RUNNER_REGISTRATION_TOKEN=ipofHSVd0Hv3vWPplrxw7qKJteXYYfqfl9dCWIfj
- GITEA_RUNNER_LABELS=ubuntu-latest:docker://node:24-alpine
- GITEA_RUNNER_NAME=my-vue-app-runner
networks:
- gitea-actions-network
volumes:
runner-data:
networks:
gitea-actions-network:
driver: bridge