gpt4 book ai didi

docker - docker运行时如何传递crontab命令

转载 作者:行者123 更新时间:2023-12-02 07:24:05 25 4
gpt4 key购买 nike

我想通过docker run命令运行docker,并希望像bleow一样传递crontab命令。

crontab -l | '{ /bin/cat; /bin/echo "*/5 * * * * <some command>"; }' | crontab -

上面的命令将创建一个 cronscript,它将在新创建的 docker 容器中每 5 分钟运行一次。

构建图像时我不需要提供此命令。*此 docker 将在计划作业时创建。

最佳答案

docker run -it image /bin/bash -c "crontab -l | /bin/cat; /bin/echo \"*/5 * * * * <some command>\" |crontab - ; service cron restart"

关于docker - docker运行时如何传递crontab命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48127754/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com