Docker Containers
Containers are instances of Docker images that can be run using the Docker run command. The basic purpose of Docker is to run containers. Letβs discuss how to work with containers.
Running a Container
Running of containers is managed with the Docker run command. To run a container in an interactive mode, first launch the Docker container.
Listing of Running Containers
One can list all of the containers on the machine via the docker ps command. This command is used to return the currently running containers.
Listing of Running All Containers
There is 2 ways to do that
Last updated