About 63,300 results
Open links in new tab
  1. How to list containers in Docker - Stack Overflow

    May 30, 2013 · It is used to list all the running containers includes all states. docker container ls -a And then, if you want to clean them all, docker rm $(docker ps -aq) It is used to list all the …

  2. How do I list all containers in a user-defined docker network?

    Jun 23, 2017 · How do I get a list of all the containers in a user-defined docker network? I would like to get all the commit hashes of every container for a specific user-defined docker network.

  3. Exploring Docker container's file system - Stack Overflow

    Mar 3, 2015 · The file system of the container is in the data folder of docker, normally in /var/lib/docker. In order to start and inspect a running containers file system do the following:

  4. How to list exposed port of all containers? - Stack Overflow

    Apr 13, 2018 · We have lots of containers started using Rancher with each container exposing multiple ports. Since we started the containers with Rancher, no port is exposed to the host by …

  5. How to get a list of images on docker registry v2

    Jul 6, 2015 · I'm using docker registry v1 and I'm interested in migrating to the newer version, v2. But I need some way to get a list of images present on registry; for example with registry v1 I …

  6. Show stopped Docker containers - Stack Overflow

    I am new to Docker, and I would like to list the stopped containers. With docker ps: sudo docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS ...

  7. List only stopped Docker containers - Stack Overflow

    May 14, 2015 · Docker gives you a way of listing running containers or all containers including stopped ones. This can be done by: $ docker ps # To list running containers Or by $ docker ps …

  8. How can I list all tags for a Docker image on a remote registry?

    Apr 7, 2017 · How can I list all tags of a Docker image on a remote Docker registry using the CLI (preferred) or curl? Preferably without pulling all versions from the remote registry. I just want …

  9. How to show all running containers created by docker-compose, …

    Docker compose adds labels to each container that it creates. If you want to get all containers created by compose, you can perform a container ls and apply a filter.

  10. Stop and remove all docker containers - Stack Overflow

    Jul 10, 2021 · How can I stop and remove all docker containers to create a clean slate with my Docker containers? Lots of times I feel it is easier to start from scratch, but I have a bunch of …