about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRuben ten Hove <git@rhtenhove.nl>2022-06-18 08:35:25 -0400
committerRuben ten Hove <git@rhtenhove.nl>2022-06-18 08:35:25 -0400
commit85b1ce00a8c2c955f33d412d2f288807fe9b4d3e (patch)
tree5ca8a83bf8fa747b7a5a45fdf8c8f0617d536baa
parent51a88b17b318768b95442a74358f056768146d57 (diff)
downloadafl++-85b1ce00a8c2c955f33d412d2f288807fe9b4d3e.tar.gz
fully qualified names
-rw-r--r--README.md4
-rw-r--r--docs/INSTALL.md4
-rw-r--r--docs/fuzzing_in_depth.md2
3 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index d8498520..91345d0c 100644
--- a/README.md
+++ b/README.md
@@ -53,8 +53,8 @@ To have AFL++ easily available with everything compiled, pull the image directly
 from the Docker Hub (available for both x86_64 and arm64):
 
 ```shell
-docker pull aflplusplus/aflplusplus:stable
-docker run -ti -v /location/of/your/target:/src aflplusplus/aflplusplus:stable
+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 published when a push to the stable branch happens
diff --git a/docs/INSTALL.md b/docs/INSTALL.md
index ac7b5486..e29fca96 100644
--- a/docs/INSTALL.md
+++ b/docs/INSTALL.md
@@ -8,8 +8,8 @@ hence afl-clang-lto is available) or just pull directly from the Docker Hub
 (for x86_64 and arm64):
 
 ```shell
-docker pull aflplusplus/aflplusplus:stable
-docker run -ti -v /location/of/your/target:/src aflplusplus/aflplusplus:stable
+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.
diff --git a/docs/fuzzing_in_depth.md b/docs/fuzzing_in_depth.md
index d5fae0a6..8963c635 100644
--- a/docs/fuzzing_in_depth.md
+++ b/docs/fuzzing_in_depth.md
@@ -47,7 +47,7 @@ tasks, fuzzing may put a strain on your hardware and on the OS. In particular:
   example, the following line will run a Docker container with all this preset:
 
   ```shell
-  # docker run -ti --mount type=tmpfs,destination=/ramdisk -e AFL_TMPDIR=/ramdisk aflplusplus/aflplusplus:stable
+  # docker run -ti --mount type=tmpfs,destination=/ramdisk -e AFL_TMPDIR=/ramdisk docker.io/aflplusplus/aflplusplus:stable
   ```
 
 ## 1. Instrumenting the target