-
I found a new "passthrough" in man page, I used "none" for a long time. I can't understand what is it. An alias? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
So, use |
Beta Was this translation helpful? Give feedback.
-
if you run |
Beta Was this translation helpful? Give feedback.
if you run
podman run -d
you will see the difference more clearly, passthrough is actually passing down the actual stdio fds down in the container.None on the other only doesn't log the output to somehwere so it cannot be replayed later, you can still use commands like podman attach to attach later and/or multiple times without issues all all the stdio is multiplexed in conmon. That is just not possible with passthrough as the fds only exists once.