Skip to content

Disable Docker/Podman logging

ale requested to merge no-podman-logs into master

With the default log_driver, podman/docker will write container logs to their own storage on disk. This is unnecessary as we already have the systemd journal doing the same thing, so we disable it by explicitly passing --log-driver=none to "podman run".

As a side effect, "podman logs " will stop working, but "journalctl -u docker-" will achieve the same result.

Merge request reports