From 63ca60950441c20ad89130159fd5a9ab99a0815d Mon Sep 17 00:00:00 2001 From: Nathan Falvey Date: Tue, 3 Mar 2026 00:40:08 +0000 Subject: [PATCH] refactor(gitea-runner): Correct typo in environment variable example and update volume path --- templates/gitea-runner/docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/gitea-runner/docker-compose.yml b/templates/gitea-runner/docker-compose.yml index b52fc66..b213f53 100644 --- a/templates/gitea-runner/docker-compose.yml +++ b/templates/gitea-runner/docker-compose.yml @@ -6,10 +6,10 @@ services: container_name: gitea_runner restart: unless-stopped environment: - - GITEA_INSTANCE_URL=YPOUR_GITEA_INSTANCE_URL_HERE + - GITEA_INSTANCE_URL=YOUR_GITEA_INSTANCE_URL_HERE - GITEA_RUNNER_REGISTRATION_TOKEN=YOUR_RUNNER_REGISTRATION_TOKEN_HERE - GITEA_RUNNER_NAME=solo-runner - GITEA_RUNNER_LABELS=ubuntu-latest:docker://catthehacker/ubuntu:act-latest volumes: - - /volume1/docker/gitea-runner:/data + - ./data:/data - /var/run/docker.sock:/var/run/docker.sock # This allows the runner to start containers \ No newline at end of file