Skip to content

Instantly share code, notes, and snippets.

@tianon
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tianon/9168215 to your computer and use it in GitHub Desktop.
Save tianon/9168215 to your computer and use it in GitHub Desktop.
"docker build" output mangling
FROM busybox
RUN echo -n '[ ] testing...' && sleep 5 && echo -e 'done.\r[✓]'
# for about 5 seconds:
[ ] testing...
# then:
[✓] testing...done.
$ docker build --no-cache --rm git://gist.github.com/9168215.git
Step 0 : FROM busybox
---> 769b9341d937
Step 1 : RUN echo -n '[ ] testing...' && sleep 5 && echo -e 'done.\r[✓]'
---> Running in cc3369371e19
[✓]e.
---> ac50e5cf83b3
Successfully built ac50e5cf83b3
Removing intermediate container cc3369371e19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment