From d875ff5c7a7a77e6234c2c5aea44aaae3bea1143 Mon Sep 17 00:00:00 2001 From: sheepster Date: Wed, 1 May 2024 07:07:10 +0300 Subject: [PATCH] doc(readme): Add docker usage doc (#3103) * doc(readme): Add docker usage doc * fix heading size Co-authored-by: itchyny --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 1d06b0cf..691adc49 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,17 @@ Download the latest releases from the [GitHub release page](https://github.com/j Pull the [jq image](https://github.com/jqlang/jq/pkgs/container/jq) to start quickly with Docker. + +#### Run with Docker +##### Example: Extracting the version from a `package.json` file +```bash +docker run --rm -i ghcr.io/jqlang/jq:latest < package.json '.version' +``` +##### Example: Extracting the version from a `package.json` file with a mounted volume +```bash +docker run --rm -i -v "${PWD}":/pwd -w /pwd ghcr.io/jqlang/jq:latest '.version' package.json +``` + ### Building from source #### Dependencies