Created
July 24, 2019 10:00
-
-
Save Akagi201/b47cf0aa592560210528d8696ac160e0 to your computer and use it in GitHub Desktop.
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