Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't use '--tty-' for podman shell aliases #341

Merged
merged 1 commit into from
Dec 8, 2021
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