I cannot run an image from dockerhub. It silently exists doing absolutely nothing.
$ docker run -it -v $(pwd):/build avivace/iosevka-build
If I run it with -D
flag, it prints just one message:
$ docker -D run -it -v $(pwd):/build avivace/iosevka-build
DEBU[0000] [hijack] End of stdout
What does it mean? Why there is no other output?
I should say that yesterday it was running fine.
Docker version 20.10.14, build a224086
OS: Linux Kubuntu 20.04
2
Answers
The problem with that specific docker image which basically did nothing. As for the message
DEBU[0000] [hijack] End of stdout
— as @HansKilian noted in the comments, it just means that stdout has been closed.I just experienced this, in my case I had to override the CMD set in the Dockerfile by adding an entrypoint flag to the command:
So you might try: