Update file names and remove useless things

This commit is contained in:
2026-02-24 19:39:55 +05:30
parent 9fe8704abe
commit 98617d8a21
55 changed files with 0 additions and 89 deletions

View File

@@ -0,0 +1,23 @@
services:
docker-in-docker:
container_name: docker_dind
image: docker.io/library/docker:dind
restart: unless-stopped
privileged: true
command: ['dockerd', '-H', 'tcp://0.0.0.0:2375', '--tls=false']
forgejo-runner:
container_name: forgejo-runner
image: data.forgejo.org/forgejo/runner:12.6.3
restart: unless-stopped
links:
- docker-in-docker
depends_on:
docker-in-docker:
condition: service_started
user: 1001:1001
command: '/bin/sh -c "while : ; do sleep 1 ; done ;"'
environment:
- DOCKER_HOST=tcp://docker-in-docker:2375
volumes:
- ./data:/data