secret-magpie-cli icon indicating copy to clipboard operation
secret-magpie-cli copied to clipboard

Documentation - Docker volume switches

Open justin-atkins opened this issue 1 year ago • 0 comments

README has two sample docker commands where the volume switch -v comes before the run option:

docker -v /localpath:/app/results run punksecurity/secret-magpie <other options> --out results/results
docker -v /path/to/your/certificates:/usr/local/share/ca-certificates/ run punksecurity/secret-magpie <other options> --update-ca-certificates

These cause my Docker Desktop (via WSL) to complain for some reason. Switching them to after the run command works:

docker run -v /localpath:/app/results punksecurity/secret-magpie <other options> --out results/results
docker run -v /path/to/your/certificates:/usr/local/share/ca-certificates/ punksecurity/secret-magpie <other options> --update-ca-certificates

glhf

/justin

justin-atkins avatar Aug 16 '23 12:08 justin-atkins