Get a Docker Image

From D-Wiki

Get a Docker Image

Find out the corresponding docker pull command.

The syntax is always something like:

docker pull {CONTAINER_NAME}

It'll download everything you need and you've pulled the docker container image successfully. Then you can run it with the corresponding run command.

docker run {...}

See the run commands in the documentation provided by the container you've used.