私の dockerfile で起動される Python (2.7) アプリがあります:
CMD ["python","main.py"]
main.py は起動時にいくつかの文字列を出力し、その後ループに入ります。
print "App started"
while True:
time.sleep(1)
-it フラグを使用してコンテナを起動する限り、すべてが期待どおりに動作します。
$ docker run --name=myapp -it myappimage
> App started
後でログを介して同じ出力を確認できます。
$ docker logs myapp
> App started
同じコンテナを -d フラグ付きで実行しようとすると、コンテナは正常に起動しているように見えますが、出力は表示されません。
$ docker run --name=myapp -d myappimage
> b82db1120fee5f92c80000f30f6bdc84e068bafa32738ab7adb47e641b19b4d1
$ docker logs myapp
$ (empty)
しかし、コンテナはまだ実行されているようです。
$ docker ps
Container Status ...
myapp up 4 minutes ...
添付しても何も表示されません:
$ docker attach --sig-proxy=false myapp
(working, no output)
何が問題なのか、何かアイデアはありますか? バックグラウンドで実行した場合、「print」の動作は異なりますか?
Docker バージョン:
Client version: 1.5.0
Client API version: 1.17
Go version (client): go1.4.2
Git commit (client): a8a31ef
OS/Arch (client): linux/arm
Server version: 1.5.0
Server API version: 1.17
Go version (server): go1.4.2
Git commit (server): a8a31ef
ベストアンサー1
ついに、Dockerでデーモン化して実行しているときにPythonの出力を表示する解決策を見つけました。@ahmetalpbalkanに感謝します。GitHubさらなる参考のために、ここで私自身が答えます。
バッファなし出力を使用する
CMD ["python","-u","main.py"]
の代わりに
CMD ["python","main.py"]
問題は解決しました。出力(stderrとstdoutの両方)は次のようにして確認できます。
docker logs myapp
なぜ-u
参照
- print is indeed buffered and docker logs will eventually give you that output, just after enough of it will have piled up
- executing the same script with python -u gives instant output as said above
- import logging + logging.warning("text") gives the expected result even without -u
python -u
ref. > python --help | grep -- -uの意味
-u : force the stdout and stderr streams to be unbuffered;