diff --git a/run-docker.ps1 b/run-docker.ps1 new file mode 100644 index 0000000..eb39345 --- /dev/null +++ b/run-docker.ps1 @@ -0,0 +1,5 @@ +$current = (Get-Location).Path; +$target = $args[0]; +$name = Split-Path $target -Leaf; + +docker run -it --mount type=bind,source="$target",target="/$name" --mount type=bind,source="$current",target="/app" codersrank/repo_info_extractor:latest /$name