From 720b73a9aef8bbc6de64e26494531ae88b9a600b Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Wed, 19 Mar 2025 14:27:50 -0400 Subject: [PATCH] feat: Adds config and updates compose file to include cache. --- compose.yaml | 2 ++ config.yaml | 8 ++++++++ 2 files changed, 10 insertions(+) create mode 100644 config.yaml diff --git a/compose.yaml b/compose.yaml index f100718..42713f5 100644 --- a/compose.yaml +++ b/compose.yaml @@ -10,6 +10,8 @@ services: GITEA_RUNNER_REGISTRATION_TOKEN: "${REGISTRATION_TOKEN}" GITEA_RUNNER_NAME: "${GITEA_RUNNER_NAME}" GITEA_RUNNER_LABELS: "${GITEA_RUNNER_LABELS}" + ports: + - 8088:8088 volumes: - ./config.yaml:/config.yaml - act_runner_data:/data diff --git a/config.yaml b/config.yaml new file mode 100644 index 0000000..405e482 --- /dev/null +++ b/config.yaml @@ -0,0 +1,8 @@ +# https://docs.gitea.com/usage/actions/act-runner +cache: + enabled: true + dir: "" + # Use the LAN IP obtained in step 1 + host: "192.168.50.4" + # Use the port number obtained in step 2 + port: 8088