Migrate from gitea to forgejo

It's not just the colour scheme, honest!

Some things still need renaming, but at least the application has moved.
This commit is contained in:
Jake Howard
2024-08-25 16:19:11 +01:00
parent 621e65b920
commit ca1d7015a7
15 changed files with 151 additions and 79 deletions

View File

@ -0,0 +1,20 @@
services:
forgejo-runner:
image: code.forgejo.org/forgejo/runner:3.5.1
user: "{{ docker_user.id }}"
volumes:
- /mnt/data:/data
environment:
- TZ={{ timezone }}
- DOCKER_HOST=tcp://dind:2375
restart: unless-stopped
command: forgejo-runner daemon
depends_on:
dind:
condition: service_started
dind:
image: docker:dind
privileged: true
command: [dockerd, -H, tcp://0.0.0.0:2375, --tls=false]
restart: unless-stopped