You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I’m trying to familiarize myself with Colima more by playing with it for my own projects and have run into a speed bump.
I have a Dockerfile that has ~60 build stages and when there is a build issue in Docker I am able to see the last intermediate image, start it up, and then manually troubleshoot the failing step. I don’t see that same output from Colima.
Example:
Docker output
Step 50/59 : RUN pip3 show ffsubsync
---> Using cache
---> bee6ba039a62
Step 51/59 : RUN set -x && cp /tmp/ccextractor/linux/ccextractor /usr/local/bin && cp /tmp/comchap/comchap /usr/local/bin && cp /tmp/comchap/comcut /usr/local/bin
---> Using cache
---> 490810b74215
Step 52/59 : FROM libraries_build as comskip
---> 490810b74215
Step 53/59 : RUN set -x && cd /tmp && git clone https://github.com/erikkaashoek/Comskip && cd Comskip && ./autogen.sh && ./configure --enable-static && make
---> Running in 452e99ed39bd
Colima output. See how it is collapsed into a single line with no image ID
=> CACHED [libraries_build 1/8] RUN DIR=/tmp/ffmpeg && mkdir -p ${DIR} && cd ${DIR} && curl -sLO https://ffmpeg.org/releases/ffmpeg-5.0.tar.bz2 && 0.0s
=> CACHED [libraries_build 2/8] RUN set -x && DIR=/tmp/ffmpeg && mkdir -p ${DIR} && cd ${DIR} && ./configure --disable-debug --disable- 0.0s
=> CACHED [libraries_build 3/8] RUN set -x && ldd /opt/ffmpeg/bin/ffmpeg | grep opt/ffmpeg | cut -d ' ' -f 3 | xargs -i cp {} /usr/local/lib/ && cp /op 0.0s
=> CACHED [libraries_build 4/8] RUN curl https://sh.rustup.rs/ -sSf | sh -s -- -y 0.0s
=> CACHED [libraries_build 5/8] RUN set -x && cd /tmp && git clone https://github.com/CCExtractor/ccextractor && export PATH=/usr/local/sbin:/usr/lo 0.0s
=> CACHED [libraries_build 6/8] RUN set -x && cd /tmp && git clone https://github.com/BrettSheleski/comchap 0.0s
=> CACHED [libraries_build 7/8] RUN pip3 show ffsubsync 0.0s
=> CACHED [libraries_build 8/8] RUN set -x && cp /tmp/ccextractor/linux/ccextractor /usr/local/bin && cp /tmp/comchap/comchap /usr/local/bin && 0.0s
=> ERROR [comskip 1/1] RUN
Is there a place I can find equivalent output or a flag I can pass in to turn it on? Haven't been able to find anything.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I’m trying to familiarize myself with Colima more by playing with it for my own projects and have run into a speed bump.
I have a Dockerfile that has ~60 build stages and when there is a build issue in Docker I am able to see the last intermediate image, start it up, and then manually troubleshoot the failing step. I don’t see that same output from Colima.
Example:
Docker output
Colima output. See how it is collapsed into a single line with no image ID
Is there a place I can find equivalent output or a flag I can pass in to turn it on? Haven't been able to find anything.
Beta Was this translation helpful? Give feedback.
All reactions