secret-magpie-cli
secret-magpie-cli copied to clipboard
Documentation - Docker volume switches
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