diff --git a/run-in-docker.ps1 b/run-in-docker.ps1 index a5f3e98..24f01ee 100644 --- a/run-in-docker.ps1 +++ b/run-in-docker.ps1 @@ -29,10 +29,11 @@ param ( ) docker build -t exercism/csharp-test-runner . + docker run ` - --network none ` - --read-only ` - --mount type=bind,src=${InputDirectory},dst=/input/ ` - --mount type=bind,src=${OutputDirectory},dst=/output/ ` - --mount type=tmpfs,dst=/tmp ` - exercism/csharp-test-runner $Exercise /input /output \ No newline at end of file + --network none ` + --read-only ` + --mount "type=bind,src=${InputDirectory},dst=/input/" ` + --mount "type=bind,src=${OutputDirectory},dst=/output/" ` + --mount "type=tmpfs,dst=/tmp" ` + exercism/csharp-test-runner $Exercise /input /output \ No newline at end of file