From 26527383b39967a15a0d57cf1e2356b8fac702c4 Mon Sep 17 00:00:00 2001 From: Jonas Bardino Date: Thu, 21 Mar 2024 16:33:30 +0100 Subject: [PATCH] Adjust CI again to try to get around the next mount issue we hit with the adjusted 'bind,ro' option. AFAICT from discussion online docker-compose does not always like relative ipaths in volume sections. Local experiments indicate that this may also be the case here. --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2dbf243e..44ea52a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,6 +33,9 @@ jobs: - name: Build images run: | make init + echo "" >> .env + echo "# NOTE: try absolute path to current dir to get docker ro-mount to work" >> .env + echo "DOCKER_MIGRID_ROOT=$PWD" >> .env make dockerbuild - name: Start services run: |