Add runner

This commit is contained in:
zino
2025-11-20 14:39:11 +01:00
parent 08ff10f1d1
commit 69f5e1efde
2 changed files with 18 additions and 1 deletions

1
.env Normal file
View File

@@ -0,0 +1 @@
GITEA_RUNNER_REGISTRATION_TOKEN=OVA1foeb0wf3JHjfMTZI8G9asE2OdmdduNqNJIhf

View File

@@ -42,8 +42,24 @@ services:
networks: networks:
- web - web
gitea-act-runner:
image: gitea/act_runner:latest
container_name: gitea-act-runner
restart: unless-stopped
environment:
- GITEA_INSTANCE_URL=https://git.zinomedia.de
- GITEA_RUNNER_REGISTRATION_TOKEN=${GITEA_RUNNER_REGISTRATION_TOKEN}
- GITEA_RUNNER_NAME=armos-docker-runner
- GITEA_RUNNER_LABELS=linux,amd64,self-hosted,docker
volumes:
- ./volumes/act_runner:/data
- /var/run/docker.sock:/var/run/docker.sock
depends_on:
- gitea
networks:
- web
networks: networks:
web: web:
external: true external: true
name: web name: web