I want to get rid of the huge container log files on my docker env.
I have a problem finding them when running my own Docker on Mac. I do not use docker-machine (virtualbox) thing. My docker version is 1.13.1.
When i do
docker inspect <container-name>
I see that there is
"LogPath": "/var/lib/docker/containers/<container-id>/<container-id>-json.log
But on my mac (host) there is not even a directory / var / lib / docker.
I also looked
~/Library/Containers/com.docker.docker/
but did not find any specific containers there.
I could use the tail, but this is not always convenient for me.
So the question is, how can I clear the log files of my containers in my native Mac Docker environment.
source share