Initial commit

This commit is contained in:
Liviu Burcusel 2025-12-12 11:31:30 +01:00
commit ee850e8db0
Signed by: liviu
GPG key ID: 6CDB37A4AD2C610C
4 changed files with 301 additions and 0 deletions

18
runner/docker-compose.yml Normal file
View file

@ -0,0 +1,18 @@
services:
runner:
image: data.forgejo.org/forgejo/runner:12
container_name: forgejo-runner
user: "0:0"
# cpus: 4.0
# cpuset: "4-7"
volumes:
- ./data:/data
- /var/run/docker.sock:/var/run/docker.sock
networks:
- net
restart: unless-stopped
command: '/bin/sh -c "while : ; do sleep 1 ; done ;"'
# command: '/bin/sh -c "sleep 5; forgejo-runner daemon --config /data/config.yml"'
networks:
net: {}