Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/ROOT/pages/producing-ign.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ To make it simpler to type, you may also add the following alias to your shell c

[source,bash]
----
alias butane='podman run --rm --tty --interactive \
alias butane='podman run --rm --interactive \
--security-opt label=disable \
--volume ${PWD}:/pwd --workdir /pwd \
quay.io/coreos/butane:release'
Expand Down
6 changes: 3 additions & 3 deletions modules/ROOT/pages/tutorial-setup.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -55,18 +55,18 @@ To make it simpler to type, you may add the following aliases to your shell conf

[source,bash]
----
alias butane='podman run --rm --tty --interactive \
alias butane='podman run --rm --interactive \
--security-opt label=disable \
--volume ${PWD}:/pwd --workdir /pwd \
quay.io/coreos/butane:release'

alias coreos-installer='podman run --pull=always \
--rm --tty --interactive \
--rm --interactive \
--security-opt label=disable \
--volume ${PWD}:/pwd --workdir /pwd \
quay.io/coreos/coreos-installer:release'

alias ignition-validate='podman run --rm --tty --interactive \
alias ignition-validate='podman run --rm --interactive \
--security-opt label=disable \
--volume ${PWD}:/pwd --workdir /pwd \
quay.io/coreos/ignition-validate:release'
Expand Down