Disable Docker/Podman logging
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.