当前位置:  开发笔记 > 编程语言 > 正文

在docker中重定向命令输出

如何解决《在docker中重定向命令输出》经验,为你挑选了3个好方法。

我想为我的服务器做一些简单的日志记录,这是一个在Docker容器中运行的小型Flask应用程序.

这是Dockerfile

# Dockerfile
FROM dreen/flask
MAINTAINER dreen
WORKDIR /srv

# Get source
RUN mkdir -p /srv
COPY perfektimprezy.tar.gz /srv/perfektimprezy.tar.gz
RUN tar x -f perfektimprezy.tar.gz
RUN rm perfektimprezy.tar.gz

# Run server
EXPOSE 80
CMD ["python", "index.py", "1>server.log", "2>server.log"]

正如您在最后一行所看到的,我将stderr和stdout重定向到一个文件.现在我运行这个容器和shell

docker run -d -p 80:80 perfektimprezy
docker exec -it "... id of container ..." bash

并观察以下事项:

服务器正在运行,网站正常运行

没有 /srv/server.log

ps aux | grep python 收益率:

root         1  1.6  3.2  54172 16240 ?        Ss   13:43   0:00 python index.py 1>server.log 2>server.log
root        12  1.9  3.3 130388 16740 ?        Sl   13:43   0:00 /usr/bin/python index.py 1>server.log 2>server.log
root        32  0.0  0.0   8860   388 ?        R+   13:43   0:00 grep --color=auto python

但是没有日志...但是,如果我docker attach对容器我可以在控制台中看到应用程序生成输出.

使用Docker时如何正确地将stdout/err重定向到文件?



1> helmbert..:

当您CMD在a中指定JSON列表时Dockerfile,它将不会在shell中执行,因此通常的shell函数(如stdout和stderr重定向)将不起作用.

从文档:

exec表单被解析为JSON数组,这意味着必须使用双引号(")围绕单词而不是单引号(').

与shell表单不同,exec表单不会调用命令shell.这意味着不会发生正常的shell处理.例如,CMD [ "echo", "$HOME" ]不会对变量进行替换$HOME.如果你想要shell处理,那么要么使用shell表单,要么直接执行shell,例如:CMD [ "sh", "-c", "echo", "$HOME" ].

您的命令实际执行的是执行index.py脚本并将字符串"1>server.log""2>server.log"命令行参数传递到该python脚本中.

请改用以下其中一种(两者都应该有效):

    CMD "python index.py > server.log 2>&1"

    CMD ["/bin/sh", "-c", "python index.py > server.log 2>&1"]


[文档](https://docs.docker.com/engine/reference/builder/#shell-form-entrypoint-example)建议使用内置的`exec` shell,以使容器符合操作系统信号和"码头停止".所以第一个命令变为:`CMD exec python index.py> server.log 2>&1`

2> Jing Li..:

只是补充,当使用docker-compose时,您还可以尝试:

command: bash -c "script_or_command > /path/to/log/command.log 2>&1"



3> Daniel S. St..:

docker run在shell管道中或在shell重定向下使用,run适当地接受stdin并输出到stdout和stderr,请使用以下命令:

docker run -i --log-driver=none -a stdin -a stdout -a stderr ...

例如,在包含的环境中运行alpine映像并执行UNIX命令cat

echo "This was piped into docker" |
  docker run -i --log-driver=none -a stdin -a stdout -a stderr \
    alpine cat - |
  xargs echo This is coming out of docker: 

发出:

This is coming out of docker: This was piped into docker

推荐阅读
mobiledu2402852357
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有