From aca1e1381f11ce697b29d5b897ba23ad6f0118f5 Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sat, 3 May 2025 21:31:48 +0100 Subject: [PATCH] Add docker-compose configuration for GitHub Actions runner --- .github/runner/docker-compose.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/runner/docker-compose.yml diff --git a/.github/runner/docker-compose.yml b/.github/runner/docker-compose.yml new file mode 100644 index 0000000..b533bfa --- /dev/null +++ b/.github/runner/docker-compose.yml @@ -0,0 +1,17 @@ +# docker-compose.yml + +services: + github-runner: + build: + context: . + args: + RUNNER_VERSION: 2.323.0 + container_name: github-runner + env_file: + - .env + volumes: + - runner-work:/home/runner/actions-runner/_work + restart: unless-stopped + +volumes: + runner-work: