Get a Docker Image

From D-Wiki
Revision as of 20:09, 20 November 2021 by Denis (talk | contribs) (Created page with "= Get a Docker Image = Find out the corresponding docker pull command. The syntax is always something like: <code>docker pull {CONTAINER_NAME}</code> It'll download everyt...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.