Docker commands overview
All Docker commands can be found by executing the following help
command:
$ docker help
To see all the options of any particular Docker command, we can use docker help <command>
, as in the following example:
$ docker help run
There is also a very good explanation of all Docker commands on the official Docker page at https://docs.docker.com/engine/reference/commandline/docker/. It's worth reading, or at least skimming, through.
In this chapter, we've covered the most useful commands and their options. As a quick reminder, let's walk through them, as follows: