Docker: How to clear the logs properly for a Docker container?

First the bad answer. From this question there’s a one-liner that you can run: instead of echo, there’s the simpler: or there’s the truncate command: I’m not a big fan of either of those since they modify Docker’s files directly. The external log deletion could happen while docker is writing json formatted data to the file, resulting … Read more