diff options
author | van Hauser <vh@thc.org> | 2022-06-18 21:48:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-18 21:48:10 +0200 |
commit | 5d5d1f70fc31c3bb4abef3a28014cb2fa8d84cc0 (patch) | |
tree | 5ca8a83bf8fa747b7a5a45fdf8c8f0617d536baa /README.md | |
parent | 605f2bf96936efd6c5193d106a32fcf893c26b56 (diff) | |
parent | 85b1ce00a8c2c955f33d412d2f288807fe9b4d3e (diff) | |
download | afl++-5d5d1f70fc31c3bb4abef3a28014cb2fa8d84cc0.tar.gz |
Merge pull request #1447 from rhtenhove/more-tags
fixes github actions
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md index c3a627ec..91345d0c 100644 --- a/README.md +++ b/README.md @@ -50,14 +50,14 @@ Here is some information to get you started: ## Building and installing AFL++ To have AFL++ easily available with everything compiled, pull the image directly -from the Docker Hub (available for x86_64 and arm64): +from the Docker Hub (available for both x86_64 and arm64): ```shell -docker pull aflplusplus/aflplusplus -docker run -ti -v /location/of/your/target:/src aflplusplus/aflplusplus +docker pull docker.io/aflplusplus/aflplusplus:stable +docker run -ti -v /location/of/your/target:/src docker.io/aflplusplus/aflplusplus:stable ``` -This image is automatically generated when a push to the stable repo happens +This image is automatically published when a push to the stable branch happens (see [branches](#branches)). If you use the command above, you will find your target source code in `/src` in the container. |