refactor(gitea-runner): Correct typo in environment variable example and update volume path

This commit is contained in:
2026-03-03 00:40:08 +00:00
parent 05c6ea4aac
commit 63ca609504

View File

@@ -6,10 +6,10 @@ services:
container_name: gitea_runner container_name: gitea_runner
restart: unless-stopped restart: unless-stopped
environment: 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_REGISTRATION_TOKEN=YOUR_RUNNER_REGISTRATION_TOKEN_HERE
- GITEA_RUNNER_NAME=solo-runner - GITEA_RUNNER_NAME=solo-runner
- GITEA_RUNNER_LABELS=ubuntu-latest:docker://catthehacker/ubuntu:act-latest - GITEA_RUNNER_LABELS=ubuntu-latest:docker://catthehacker/ubuntu:act-latest
volumes: volumes:
- /volume1/docker/gitea-runner:/data - ./data:/data
- /var/run/docker.sock:/var/run/docker.sock # This allows the runner to start containers - /var/run/docker.sock:/var/run/docker.sock # This allows the runner to start containers