From 5937af061dd6611e645d61c473c39b3260b2ec71 Mon Sep 17 00:00:00 2001 From: Russell Dempsey <1173416+SgtPooki@users.noreply.github.com> Date: Mon, 4 Dec 2023 12:56:46 -0800 Subject: [PATCH] docs(readme): docker extract-fixtures --s/output/directory/ ``` > docker run -v "${PWD}:/workspace" -w "/workspace" ghcr.io/ipfs/gateway-conformance:v0.4.2 extract-fixtures --output fixtures --merged false Status: Downloaded newer image for ghcr.io/ipfs/gateway-conformance:v0.4.2 Incorrect Usage: flag provided but not defined: -output NAME: gateway-conformance extract-fixtures - Extract gateway testing fixtures that are used by the conformance test suite USAGE: gateway-conformance extract-fixtures command [command options] [arguments...] COMMANDS: help, h Shows a list of commands or help for one command OPTIONS: --directory value, --dir value The directory to extract the fixtures to --merged Merge the fixtures into a single CAR file (default: false) --help, -h show help 2023/12/04 20:54:15 flag provided but not defined: -output ``` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5369654d6..0491af01e 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ Prebuilt image at `ghcr.io/ipfs/gateway-conformance` can be used for both `test` ```console $ # extract fixtures to ./fixtures directory -$ docker run -v "${PWD}:/workspace" -w "/workspace" ghcr.io/ipfs/gateway-conformance:vA.B.C extract-fixtures --output fixtures --merged false +$ docker run -v "${PWD}:/workspace" -w "/workspace" ghcr.io/ipfs/gateway-conformance:vA.B.C extract-fixtures --directory fixtures --merged false $ # run subdomain-gateway tests against endpoint at http://localhost:8080 $ docker run --network host -v "${PWD}:/workspace" -w "/workspace" ghcr.io/ipfs/gateway-conformance:vA.B.C test --gateway-url http://localhost:8080 --json report.json --specs +subdomain-gateway,-path-gateway -- -timeout 30m