Created
March 22, 2018 02:52
-
-
Save songouyang/af5352112e291a0fa456ed740b89185b to your computer and use it in GitHub Desktop.
清除容器 log
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| echo "==================== start clean docker containers logs ==========================" | |
| logs=$(find /var/lib/docker/containers/ -name *-json.log) | |
| for log in $logs | |
| do | |
| echo "clean logs : $log" | |
| cat /dev/null > $log | |
| done | |
| echo "==================== end clean docker containers logs ==========================" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment