Skip to content

Commit f7ddc4b

Browse files
committed
Don't use '--tty-' for podman shell aliases
Using '--tty' conflicts with stdin redirection: https://docs.podman.io/en/latest/markdown/podman-run.1.html#tty-t
1 parent 1d64963 commit f7ddc4b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

modules/ROOT/pages/producing-ign.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ To make it simpler to type, you may also add the following alias to your shell c
5757

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

modules/ROOT/pages/tutorial-setup.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,18 +55,18 @@ To make it simpler to type, you may add the following aliases to your shell conf
5555

5656
[source,bash]
5757
----
58-
alias butane='podman run --rm --tty --interactive \
58+
alias butane='podman run --rm --interactive \
5959
--security-opt label=disable \
6060
--volume ${PWD}:/pwd --workdir /pwd \
6161
quay.io/coreos/butane:release'
6262
6363
alias coreos-installer='podman run --pull=always \
64-
--rm --tty --interactive \
64+
--rm --interactive \
6565
--security-opt label=disable \
6666
--volume ${PWD}:/pwd --workdir /pwd \
6767
quay.io/coreos/coreos-installer:release'
6868
69-
alias ignition-validate='podman run --rm --tty --interactive \
69+
alias ignition-validate='podman run --rm --interactive \
7070
--security-opt label=disable \
7171
--volume ${PWD}:/pwd --workdir /pwd \
7272
quay.io/coreos/ignition-validate:release'

0 commit comments

Comments
 (0)