如何摆脱 Alpine 中的 crond 日志

问题描述 投票:0回答:1

我在 alpine Docker 镜像中运行 crond。无论我做什么:

crond -l 0

crond -l 8

crond -L /dev/null

我总是会得到定期的控制台日志:

nginx-anon      | crond[57]: wakeup dt=60
nginx-anon      | crond[57]: file root:
nginx-anon      | crond[57]:  line run-parts /etc/periodic/15min
nginx-anon      | crond[57]:  line run-parts /etc/periodic/hourly
nginx-anon      | crond[57]:  line run-parts /etc/periodic/daily
nginx-anon      | crond[57]:  line run-parts /etc/periodic/weekly
nginx-anon      | crond[57]:  line run-parts /etc/periodic/monthly

这些东西填满了我的 Docker 日志。

知道如何摆脱它们吗?谢谢!

docker cron alpine-linux
1个回答
0
投票

在 Docker Alpine 镜像下使用

crond -L /dev/null
实际上对我有用。

© www.soinside.com 2019 - 2024. All rights reserved.