Size of logs for each Docker container
Print the size of the log for each container by sorting it by size
sudo du -ch $(docker inspect --format='{{.LogPath}}' $(docker ps -qa)) | sort -h
Set default limited log size when creating new containers
On Linux
Path: /etc/docker/daemon.json
On...
blog.tuando.app1 min read