From 5e7ba9b30b3395d87fc399d508ed0430c5ca5b46 Mon Sep 17 00:00:00 2001 From: Machiavelli <145562237+MachiavelliII@users.noreply.github.com> Date: Sun, 23 Mar 2025 20:12:05 +0200 Subject: [PATCH] dockdiver: add page (#15997) * dockdiver: add page * Update dockdiver.md * Update dockdiver.md perioaad * Update pages/common/dockdiver.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * Update pages/common/dockdiver.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --------- Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --- pages/common/dockdiver.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/common/dockdiver.md diff --git a/pages/common/dockdiver.md b/pages/common/dockdiver.md new file mode 100644 index 0000000000..c6a9b46118 --- /dev/null +++ b/pages/common/dockdiver.md @@ -0,0 +1,28 @@ +# dockdiver + +> A tool for interacting with Docker registries, including listing and dumping repositories. +> More information: . + +- List all repositories in a Docker registry: + +`dockdiver -url {{http://target}} -list` + +- Dump a specific repository to the default output directory (docker_dump): + +`dockdiver -url {{http://target}} -dump {{repository_name}}` + +- Dump all repositories with basic authentication: + +`dockdiver -url {{http://example.com}} -dump-all -username {{username}} -password {{password}}` + +- Dump a repository with a custom port and rate limit: + +`dockdiver -url http://example.com -dump {{repository_name}} -port {{port}} -rate {{requests_per_second}} -dir {{path/to/output_directory}}` + +- Dump all repositories with bearer token for authorization: + +`dockdiver -url {{http://example.com}} -dump-all -bearer {{bearer_token}}` + +- Add custom headers as JSON (e.g., '{"X-Custom": "Value"}'): + +`dockdiver -url {{http://example.com}} -list -headers {{'{"X-Custom": "Value"}'}}`