Tools, FAQ, Tutorials:
"docker container list --all" - List All Containers
How to list all containers on the Docker Engine with "docker container list --all" command?
✍: FYIcenter.com
The default "docker container list" or "docker ps" command lists only running containers.
If you want to see all containers including those that were stopped,
you need to use the "--all" option.
Here is a list of sub-commands supported by "docker container":
fyicenter$ docker container list --all CONTAINER ID IMAGE COMMAND STATUS PORTS NAMES 96ce071457fc hello-world "/hello" Exited (0) 6 days ago gallant_kepler 645e89e6c929 sleep "/bin/sleep" Created zealous_borg 8a0c937862dd couchdb "tini ..." Up 16 hours 4369/tcp keen_snyder
The "docker container list" command displays the following columns:
⇒ "docker container start/stop" - Start/Stop Container
⇐ "docker container list" - List Container Command
2019-04-16, ∼2266🔥, 0💬
Popular Posts:
How to Instantiate Chaincode on BYFN Channel? You can follow this tutorial to Instantiate Chaincode ...
Where to find tutorials on RSS specifications? I want to learn it to describe my API services. Here ...
How to create a "Sign-up or Sign-in" user flow policy in my Azure AD B2C directory? If you want to b...
How to add request URL Template Parameters to my Azure API operation 2017 version to make it more us...
How to extend json.JSONEncoder class? I want to encode other Python data types to JSON. If you encod...