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 li