Tools, FAQ, Tutorials:
"docker container list" - List Container Command
How to list containers on the Docker Engine with "docker container list" command?
✍: FYIcenter.com
The "docker container list" command allows you to list containers
that are on the Docker engine.
Here is a list of options supported by "docker container list":
fyicenter$ docker container list --help
Usage: docker container ls [OPTIONS]
List containers
Aliases:
ls, ps, list
Options:
-a, --all Show all containers (default shows just running)
-f, --filter filter Filter output based on conditions provided
--format string Pretty-print containers using a Go template
-n, --last int Show n last created containers (includes all
states) (default -1)
-l, --latest Show the latest created container (includes all
states)
--no-trunc Don't truncate output
-q, --quiet Only display numeric IDs
-s, --size Display total file sizes
The "docker container list" command without any option shows only containers that are currently running. If you want to see containers of other statuses, use "docker container list --all".
The "docker container list" command can also be shortened as "docker ps".
⇒ "docker container list --all" - List All Containers
⇐ "docker container ..." - Manage Containers
2023-03-28, ∼1746🔥, 0💬
Popular Posts:
Where can I download the EPUB 2.0 sample book "The Problems of Philosophy" by Lewis Theme? You can f...
How to add request query string Parameters to my Azure API operation 2017 version to make it more us...
How to use "{{...}}" Liquid Codes in "set-body" Policy Statement? The "{{...}}" Liquid Codes in "set...
Why am I getting this "Docker failed to initialize" error? After installing the latest version of Do...
Why I am getting "The Windows SDK version 8.1 was not found" error, when building my C++ application...