Tools, FAQ, Tutorials:
"docker" Commands vs. Management Commands
What are the differences between "docker" commands and management commands?
✍: FYIcenter.com
The "docker" client tool supports two sets of commands:
1. Management Commands - A "docker" management command is actually a group of sub-commands that can be used to manage a single data entity used by the Docker Engine.
For example, "docker container ..." is a group of sub-commands to manage containers on the Docker Engine.
2. (Regular) Commands - A "docker" regular command is a command that performs a single task on a specific data entity used by the Docker Engine.
A regular command is usually a short-hand format of a sub-command of a management command. For example, regular command "docker ps" is a short-hand format of the "docker container list" sub-command of the "docker container" management command.
Here is mapping of some regular commands to management sub-commands:
docker ps docker container list docker start docker container start docker stop docker container stop docker run docker container run docker exec docker container exec docker attach docker container attach docker build docker container build
2021-08-13, ∼2292🔥, 0💬
Popular Posts:
How To Access a Specific Character in a String? Any character in a string can be accessed by a speci...
How to access URL template parameters from "context.Request.Matched Parameters"object in Azure API P...
What is EPUB 3.0 Metadata "dc:publisher" and "dc:rights" elements? EPUB 3.0 Metadata "dc:publisher" ...
How to use the "Ctrl-p Ctrl-q" sequence to detach console from the TTY terminal of container's runni...
How To Create an Array with a Sequence of Integers or Characters in PHP? The quickest way to create ...