Files
gitea_actions/docker-compose.yml
编码猿 2fb84ee48b
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 10s
33
2025-10-05 01:56:00 +08:00

26 lines
617 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
environment:
- GITEA_INSTANCE_URL=https://git.bmycode.help
- GITEA_RUNNER_REGISTRATION_TOKEN=WFiO5JDwz7CHnk7fMGJYMcSITU81CLXuI7Ofg10e
- GITEA_RUNNER_LABELS=ubuntu-latest:docker://node:20-bullseye
- GITEA_RUNNER_NAME=ci操作
networks:
- gitea-actions-network
volumes:
runner-data:
networks:
gitea-actions-network:
driver: bridge