fix typos in docker documentation and shell-script text (#1202)

This commit is contained in:
jxn 2018-11-13 23:57:55 -06:00 committed by Jack Ivanov
parent 66d30e3005
commit affadd401d
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ usage() {
retcode="${1:-0}" retcode="${1:-0}"
echo "To run algo from Docker:" echo "To run algo from Docker:"
echo "" echo ""
echo "docker run --cap-drop ALL -it -v <path to configurations>:"${DATA_DIR}" trailofbits/algo:latest" echo "docker run --cap-drop=all -it -v <path to configurations>:"${DATA_DIR}" trailofbits/algo:latest"
echo "" echo ""
exit ${retcode} exit ${retcode}
} }

View file

@ -22,7 +22,7 @@ While it is not possible to run your Algo server from within a Docker container,
``` ```
- From Linux: - From Linux:
```bash ```bash
$ docker run --cap-drop-all -it \ $ docker run --cap-drop=all -it \
-v /home/trailofbits/Documents/VPNs:/data \ -v /home/trailofbits/Documents/VPNs:/data \
trailofbits/algo:latest trailofbits/algo:latest
``` ```