There is no such thing as install when it comes to docker. It runs in a container. So you create a container and start it. That's it.
"docker create . . ." creates a container
"docker start . . ." starts a container
"docker run . . ." is the combination of docker create and start.