Summary
The Docker commands we’ve covered so far are:
docker [-d] [-p host:container] [-v /host/path:/container/path] run <IMAGE NAME>, which runs a Docker imagedocker images, which displays all installed imagesdocker ps [-a], which displays all containers on the systemdocker exec <CONTAINER ID> <COMMAND>, which lets you run a command inside a running containerdocker stop <CONTAINER ID>, which stops a running container