Le 02/07/2024 à 16:38, Jörg Kastning a écrit :
[...]
:~$ podman run --rm hello-world
conmon: option parsing failed: Unknown option --full-attach
Error: write child: broken pipe
[...]
Hello,
please be aware that I never used podman nor conmon so what I say may be
totally irrelevant
the above error message could indicate that somehow by default there is
a --full-attach option that is not recognized. the podman (8) manpage
mentions:
[...]
"--attach, -a=stdin | stdout | stderr
Attach to STDIN, STDOUT or STDERR.
In foreground mode (the default when -d is not specified), podman run
can start the process in the container and attach the console to the
process’s standard input, output, and error. It can even pretend to be a
TTY (this is what most command-line executables expect) and pass along
signals. The -a option can be set for each of stdin, stdout, and stderr."
[...]
so perhaps, depending on the behavior you wish, you could combine
several -a options, for example:
$ podman run -a=stdout --rm hello-world
or
$ podman run -a=stdin -a=stdout -a=stderr --rm hello-world