services/archive/gitrunner.yaml
traveler 275b8989ec
Some checks are pending
Deploy on push / detect (push) Waiting to run
Deploy on push / deploy_swarm (push) Blocked by required conditions
Deploy on push / deploy_compose (push) Blocked by required conditions
moved unused to archive
2026-04-04 20:43:56 -05:00

29 lines
608 B
YAML

version: "3.9"
services:
forgejo-runner:
image: data.forgejo.org/forgejo/runner:4.0.0
user: "1001:998"
environment:
PUID: "1001"
PGID: "998"
TZ: "America/Chicago"
volumes:
- type: bind
source: /DockerVol/forgejo-runner
target: /data
- type: bind
source: /var/run/docker.sock
target: /var/run/docker.sock
networks:
- netgrimoire
command: ["forgejo-runner", "daemon"]
deploy:
mode: global
placement:
constraints:
- node.role == manager
networks:
netgrimoire:
external: true