skip to Main Content

can't use docker basic command

I don’t know why but my docker recently have been getting a lot of bugs and I even re-installed him, but anyway I’m trying to do this basic command but is not working guys

help pls

2

Answers


  1. you are passing the wrong name

    use this one instead:

    docker run hello-world
    
    Login or Signup to reply.
  2. You must search the image with:

    docker search hello-world
    

    or

    docker search "hello world"
    

    In the first line appear the correct name that is hello-world, then write:

    docker pull hello-world
    docker run hello-world
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search