From c7a67a8ad74dde07ffc390d3bbcd03e6df0760c1 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Wed, 19 Mar 2025 14:31:23 -0400 Subject: [PATCH] feat: Moves config to a folder, as it's not mounting properly as a file. --- compose.yaml | 4 ++-- config.yaml => config/config.yaml | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename config.yaml => config/config.yaml (100%) diff --git a/compose.yaml b/compose.yaml index 42713f5..687994b 100644 --- a/compose.yaml +++ b/compose.yaml @@ -5,7 +5,7 @@ services: env_file: - .env environment: - CONFIG_FILE: /config.yaml + CONFIG_FILE: /config/config.yaml GITEA_INSTANCE_URL: "${GITEA_URL}" GITEA_RUNNER_REGISTRATION_TOKEN: "${REGISTRATION_TOKEN}" GITEA_RUNNER_NAME: "${GITEA_RUNNER_NAME}" @@ -13,7 +13,7 @@ services: ports: - 8088:8088 volumes: - - ./config.yaml:/config.yaml + - ./config:/config - act_runner_data:/data - /var/run/docker.sock:/var/run/docker.sock security_opt: diff --git a/config.yaml b/config/config.yaml similarity index 100% rename from config.yaml rename to config/config.yaml