Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 docker 容器中使用了 scrapy splash,但图像磁盘使用量迅速增加,直到耗尽所有可用空间。如何删除日志文件以及如何限制启动日志的可用大小?
谢谢
要查找 Splash 容器的日志文件,请使用以下命令:
sudo docker inspect --format='{{.LogPath}}' <container>
其中container是 ID 或名称。获得日志文件路径后,您可以删除它,或者更好地缩小它,例如:
container
sudo truncate -s 0 <logfile_path>
如果要限制日志的大小,可以通过 Docker 的daemon.json配置文件进行配置。在 Linux 上,它的默认位置在/etc/docker(查看文档以获取正确的选项)。
daemon.json
/etc/docker