gpt4 book ai didi

docker - 未显示 docker CMD 末尾的 `tail -f` 输出

转载 作者:IT老高 更新时间:2023-10-28 12:45:08 24 4
gpt4 key购买 nike

将 Docker for Mac 1.13.1 与以下 Dockerfile 一起使用:

FROM ubuntu:latest
MAINTAINER docker@ekito.fr

#Install packages and clean downloaded packages in the lowest layer
RUN apt-get update && apt-get -y install cron && rm -rf /var/lib/apt/lists/*

# Add crontab file in the cron directory
ADD crontab /etc/cron.d/hello-cron

# Give execution rights on the cron job and create the log file to tail in the next layer
RUN chmod 0644 /etc/cron.d/hello-cron && touch /var/log/cron.log

# Run the command on container startup
CMD echo "starting" && echo "continuing" && (cron) && echo "tailing..." && tail -f /var/log/cron.log

带有一个contab文件:

* * * * * root echo "Hello world `date`" >> /var/log/cron.log 2>&1
# Don't remove the empty line at the end of this file. It is required to run the cron job

当我构建和运行它时:

docker build -t docker-cron-master .
docker run docker-cron-master

我看到了输出:

docker run docker-cron-master
starting
continuing
tailing...

如果我稍等片刻,tail -f 输出不会出现。然而,如果我登录到正在运行的容器并跟踪文件,我可以看到内容:

$ docker exec -it 4eda6b1fc6ce bash
root@4eda6b1fc6ce:/# tail -f /var/log/cron.log
Hello world Fri May 5 09:53:01 UTC 2017
Hello world Fri May 5 09:54:01 UTC 2017

我尝试在 CMD 末尾添加另一个回显,以查看是否只有最后一个命令吞噬了 STDOUT,但这没有帮助。

我已将代码发布在 github 上的 https://github.com/simbo1905/docker-cron

谢谢!

最佳答案

docker 文件系统使用写时复制和它的分层联合 fs。因此,当您写入作为镜像一部分的文件时,它会首先将该文件复制到容器文件系统,容器文件系统是所有镜像层之上的一层。

这意味着当您在/var/log/cron.log 中附加一行时,它将在文件系统中获得一个新的 inode,而 tail 命令所遵循的文件是不再是您在 docker exec 进入容器时看到的那个。您可以通过将“无”附加到文件中来解决这个问题,这也修改了强制写入时复制的最后更新时间戳:

CMD echo "starting" && echo "continuing" && (cron) \
&& echo "tailing..." && : >> /var/log/cron.log && tail -f /var/log/cron.log

我在这里整理了一个包含更多细节的要点:https://gist.github.com/sudo-bmitch/f91a943174d6aff5a57904485670a9eb

关于docker - 未显示 docker CMD 末尾的 `tail -f` 输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43802109/

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