Docker Logs Size
Best way to check the size of docker container’s logs is to execute:
docker inspect --format='{{.LogPath}}' $(docker ps -a -q) | xargs -n1 du -ah
Best way to check the size of docker container’s logs is to execute:
docker inspect --format='{{.LogPath}}' $(docker ps -a -q) | xargs -n1 du -ah