Question
Is there a way to increase the log size in docker when building a container?
In the output when building, I am getting this message:
[output clipped, log limit 1MiB reached]
from the command
docker build --progress plain .
The current workaround I have is to pipe larger sections of the RUN command in the dockerfile to /dev/null i.e.
RUN \
echo "**** install packages ****" && \
apt-get update && \
apt-get install -y libcairo2-dev libjpeg-turbo8-dev libpng-dev libtool-bin libossp-uuid-dev wget maven default-jdk > /dev/null
48 30297
48