Add docker clear log

This commit is contained in:
Sambo Chea 2021-04-06 15:49:28 +07:00
parent 7576126cdf
commit f2d90e4e74

14
docker-clear-log.sh Normal file
View File

@ -0,0 +1,14 @@
#!/bin/bash -e
if [[ -z $1 ]]; then
echo "No container specified"
exit 1
fi
if [[ "$(docker ps -aq -f name=^/${1}$ 2> /dev/null)" == "" ]]; then
echo "Container \"$1\" does not exist, exiting."
exit 1
fi
log=$(docker inspect -f '{{.LogPath}}' $1 2> /dev/null)
truncate -s 0 $log