diff options
author | Carlo Maragno <ste.maragno@gmail.com> | 2023-11-23 00:05:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-23 00:05:56 +0100 |
commit | d17e0b32f454319a117782bf7a8e4824213321df (patch) | |
tree | 56712a83b7fd4601bcb30419e8bf1ad965b17fb8 | |
parent | d6cefdc1936fc0c312670469502d8ba9208530a3 (diff) | |
download | afl++-d17e0b32f454319a117782bf7a8e4824213321df.tar.gz |
Fix typo in docker pull command, add exampe to mount current dir as volume (#1914)
-rw-r--r-- | docs/INSTALL.md | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/INSTALL.md b/docs/INSTALL.md index 41f512ed..4f029f5d 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -7,10 +7,17 @@ You can use the [Dockerfile](../Dockerfile) or just pull directly from the Docker Hub (for x86_64 and arm64): ```shell -docker pull aflplusplus/aflplusplus: +docker pull aflplusplus/aflplusplus:latest docker run -ti -v /location/of/your/target:/src aflplusplus/aflplusplus ``` +Or for convinince to run in the current directory: + +```shell +docker pull aflplusplus/aflplusplus:latest +docker run -ti -v $(pwd):/src aflplusplus/aflplusplus +``` + This image is automatically generated when a push to the stable branch happens. You will find your target source code in `/src` in the container. |