alap debian runner

This commit is contained in:
2025-11-17 09:54:03 +01:00
commit a6d3e073c0
2 changed files with 28 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
data/
.env

26
docker-compose.yml Normal file
View File

@@ -0,0 +1,26 @@
services:
gitea-runner-1:
image: gitea/act_runner:latest
restart: unless-stopped
environment:
GITEA_INSTANCE_URL: https://git.petyi.eu
GITEA_RUNNER_REGISTRATION_TOKEN: ${GITEA_TOKEN}
GITEA_RUNNER_NAME: runner-1
GITEA_RUNNER_LABELS: "ubuntu-latest:docker://node:18-bullseye"
DOCKER_HOST: "unix:///var/run/docker.sock"
volumes:
- ./data/runner1:/data1
- /var/run/docker.sock:/var/run/docker.sock
gitea-runner-2:
image: gitea/act_runner:latest
restart: unless-stopped
environment:
GITEA_INSTANCE_URL: https://git.petyi.eu
GITEA_RUNNER_REGISTRATION_TOKEN: ${GITEA_TOKEN}
GITEA_RUNNER_NAME: runner-2
GITEA_RUNNER_LABELS: "ubuntu-latest:docker://node:18-bullseye"
DOCKER_HOST: "unix:///var/run/docker.sock"
volumes:
- ./data/runner2:/data2
- /var/run/docker.sock:/var/run/docker.sock