From 3f3ddfaff039c4eacc3b3d53b4b8c675c1789ae8 Mon Sep 17 00:00:00 2001 From: jake Date: Fri, 27 Mar 2026 15:51:47 -0400 Subject: [PATCH] docker mounts fixed --- compose.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compose.yaml b/compose.yaml index 5c53026..9b26dc0 100644 --- a/compose.yaml +++ b/compose.yaml @@ -4,10 +4,10 @@ services: restart: unless-stopped image: docker.io/gitea/act_runner:0.2.11 environment: - CONFIG_FILE: ${CONFIG_FILE} + CONFIG_FILE: /config.yaml GITEA_INSTANCE_URL: ${GITEA_URL} GITEA_RUNNER_REGISTRATION_TOKEN: ${RUNNER_REGISTRATION_TOKEN} GITEA_RUNNER_NAME: ${RUNNER_NAME} volumes: - - ./config.yaml:/config.yaml + - ${CONFIG_FILE}:/config.yaml - /var/run/docker.sock:/var/run/docker.sock \ No newline at end of file