How to Clear Log Files of A Docker Container

 

docker container inspect  --format='{{.LogPath}}' container_name_or_id
truncate -s 0 /path/to/logfile 



truncate -s 0 $(docker inspect --format='{{.LogPath}}' ) 


truncate -s 0 /var/lib/docker/containers/*/*-json.log 


 

https://tecadmin.net/truncate-docker-container-logfile/

Добавить комментарий

Ваш e-mail не будет опубликован. Обязательные поля помечены *

Можно использовать следующие HTML-теги и атрибуты: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>