Skip to content

Instantly share code, notes, and snippets.

@songouyang
Created March 22, 2018 02:52
Show Gist options
  • Select an option

  • Save songouyang/af5352112e291a0fa456ed740b89185b to your computer and use it in GitHub Desktop.

Select an option

Save songouyang/af5352112e291a0fa456ed740b89185b to your computer and use it in GitHub Desktop.
清除容器 log
#!/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