From 4c6588ada4d563b5ad88c0385b8406761c876b12 Mon Sep 17 00:00:00 2001 From: Hristo Marinov <135612450+hrismarin@users.noreply.github.com> Date: Fri, 10 Jan 2025 13:04:22 +0200 Subject: [PATCH] Reduce the 'podman' command verbosity MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Keep the more common short form of the 'podman' command Co-authored-by: Timothée Ravier --- docs/getting-started.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index d0e84e37..5d9a9f02 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -20,14 +20,14 @@ This example uses `podman`, but `docker` can also be used. ```bash # Pull the container image release -podman image pull quay.io/coreos/butane:release +podman pull quay.io/coreos/butane:release # Run Butane using standard input and standard output -podman container run --interactive --rm quay.io/coreos/butane:release \ +podman run --interactive --rm quay.io/coreos/butane:release \ --pretty --strict < your_config.bu > transpiled_config.ign # Run Butane using a file as input and standard output -podman container run --interactive --rm --security-opt label=disable \ +podman run --interactive --rm --security-opt label=disable \ --volume ${PWD}:/pwd --workdir /pwd quay.io/coreos/butane:release \ --pretty --strict your_config.bu > transpiled_config.ign ```