1
0
Fork 0
1Panel-Appstore/apps/forgejo-runner/12.7.1/docker-compose.yml

42 lines
1.1 KiB
YAML
Raw Permalink Normal View History

2025-07-12 10:11:08 +08:00
services:
forgejo-runner:
image: code.forgejo.org/forgejo/runner:12.7.1
container_name: ${CONTAINER_NAME}
2025-07-13 11:43:53 +08:00
user: root
depends_on:
dind:
condition: service_started
command: /data/scripts/register.sh
2025-07-12 10:11:08 +08:00
volumes:
- ./data:/data
2025-07-12 17:15:03 +08:00
- ./scripts/register.sh:/data/scripts/register.sh:ro
- /var/run/docker.sock:/var/run/docker.sock
2025-07-12 10:11:08 +08:00
environment:
- DOCKER_MODE=${DOCKER_MODE}
- DOCKER_HOST=${DOCKER_HOST}
2025-07-12 10:11:08 +08:00
- FORGEJO_INSTANCE_URL=${FORGEJO_INSTANCE_URL}
2025-07-12 15:38:47 +08:00
- RUNNER_REGISTRATION_TOKEN=${RUNNER_REGISTRATION_TOKEN}
- RUNNER_NAME=${RUNNER_NAME}
- RUNNER_LABELS=${RUNNER_LABELS}
2025-07-12 15:38:47 +08:00
networks:
- 1panel-network
labels:
createdBy: Apps
dind:
image: docker:29.3.0
container_name: ${CONTAINER_NAME}-dind
privileged: true
restart: unless-stopped
command: ['dockerd', '-H', 'tcp://0.0.0.0:2375', '--tls=false']
environment:
DOCKER_TLS_CERTDIR: ""
volumes:
- ./dind-data:/var/lib/docker
networks:
- 1panel-network
labels:
createdBy: Apps
networks:
2025-07-12 10:11:08 +08:00
1panel-network:
external: true