From af2cd72a1f5749e0a66d301409ee88425f6874ec Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Tue, 10 Mar 2026 16:30:08 -0500 Subject: [PATCH] Try mount rather than volume --- scripts/test-linux-docker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test-linux-docker.sh b/scripts/test-linux-docker.sh index c84dc2a..7466ad7 100755 --- a/scripts/test-linux-docker.sh +++ b/scripts/test-linux-docker.sh @@ -5,4 +5,4 @@ ls -la realpath . # docker run --rm -v $(pwd):/workdir dusk-linux /bin/bash -c "./scripts/test-linux.sh" echo "Running tests inside Docker container:" -docker run --rm -v $(realpath .):/workdir dusk-linux /bin/bash -c "ls -la; realpath .; ./scripts/test-linux.sh" \ No newline at end of file +docker run --rm --mount type=bind,source=$(realpath .),target=/workdir dusk-linux /bin/bash -c "ls -la; realpath .;" \ No newline at end of file