Skip to content

Commit

Permalink
Fix invalid Docker command (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom authored Jun 24, 2021
1 parent 7279668 commit 9bc5e17
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions run-in-docker.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
--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

0 comments on commit 9bc5e17

Please sign in to comment.