Skip to content

Commit

Permalink
Reduce the 'podman' command verbosity
Browse files Browse the repository at this point in the history
Keep the more common short form of the 'podman' command

Co-authored-by: Timothée Ravier <[email protected]>
  • Loading branch information
hrismarin and travier authored Jan 10, 2025
1 parent d5501f4 commit 4c6588a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down

0 comments on commit 4c6588a

Please sign in to comment.