From 2c7bf4c38fc1e4852408efdade1595b25dcf15e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Ravier?= Date: Thu, 2 Dec 2021 13:27:24 +0100 Subject: [PATCH] docs: Don't use '--tty-' for butane alias Using '--tty' conflicts with stdin redirection: https://docs.podman.io/en/latest/markdown/podman-run.1.html#tty-t --- docs/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index 66435f8d..c4e9bd5f 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -32,7 +32,7 @@ podman run --rm -v /path/to/your_config.bu:/config.bu:z quay.io/coreos/butane:re You may also add the following alias in your shell configuration: ``` -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'