Files
gitea_actions/docker-compose.yml
编码猿 ce444b098e
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 12s
Build Vue3 App / build (push) Has been cancelled
first commit
2025-10-04 21:16:45 +08:00

27 lines
716 B
YAML

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