Docker run hello-world not working

后端 未结 1 1700
情书的邮戳
情书的邮戳 2021-01-15 22:59

I\'ve installed Docker following exactly the documentation on the website but when I try to run docker run hello-world, I get the following output from the term

相关标签:
1条回答
  • 2021-01-15 23:48

    Is it possible that you have docker.js installed locally?

    The output from your command looks like the docker.js docker executable is called instead of the Docker container one.

    The log messages that you showed can be found in the docker.js documentation, it looks like you're running that instead of the one you want.

    If this is the issue run npm uninstall -g docker

    0 讨论(0)
提交回复
热议问题