mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
b4ba575a28
This fix tries to address the issue raised in 25661 where verbose "Sending build context" messages were not suppressed in non tty (e.g. log file) sencarios. This fix suppress the "Sending build context" message (other than the last one) if the output is not a tty. The last update of the "Sending build context" message is still sent to the output. This fix has been tested manually: ``` docker build -t tmp . > build.log ``` The output is (only one "Sending build context"): ``` Sending build context to Docker daemon 249.4 MB Step 1 : FROM busybox ---> 2b8fd9751c4c Step 2 : RUN echo 'test' ---> Using cache ---> 7db298b6c493 Successfully built 7db298b6c493 ``` This fix fixes 25661. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> |
||
---|---|---|
.. | ||
client | ||
fixtures | ||
server | ||
types/backend | ||
common.go | ||
common_test.go | ||
README.md |
This directory contains code pertaining to the Docker API:
-
Used by the docker client when communicating with the docker daemon
-
Used by third party tools wishing to interface with the docker daemon