github.com/containers/podman/v5@v5.1.0-rc1/docs/source/markdown/options/log-driver.md (about) 1 ####> This option file is used in: 2 ####> podman create, run 3 ####> If file is edited, make sure the changes 4 ####> are applicable to all of those. 5 #### **--log-driver**=*driver* 6 7 Logging driver for the container. Currently available options are **k8s-file**, **journald**, **none**, **passthrough** and **passthrough-tty**, with **json-file** aliased to **k8s-file** for scripting compatibility. (Default **journald**). 8 9 The podman info command below displays the default log-driver for the system. 10 ``` 11 $ podman info --format '{{ .Host.LogDriver }}' 12 journald 13 ``` 14 The **passthrough** driver passes down the standard streams (stdin, stdout, stderr) to the 15 container. It is not allowed with the remote Podman client, including Mac and Windows (excluding WSL2) machines, and on a tty, since it is 16 vulnerable to attacks via TIOCSTI. 17 18 The **passthrough-tty** driver is the same as **passthrough** except that it also allows it to be used on a TTY if the user really wants it.