Added containers to docker but they do not show in docker desktop

Hi am new to docker so making lots of mistakes. I have downloaded 5 containers using windows 10 Powershell but then dont appear in docker desktop. what am I doing wrong and how do I fix it?
PS C:\Windows\system32> docker info
Client:
Version: 27.1.1
Context: desktop-linux
Debug Mode: false
Plugins:

Server:
Containers: 5
Running: 0
Paused: 0
Stopped: 5
Images: 8
Server Version: 27.1.1
Storage Driver: overlay2

Containers

Give feedback

Show charts

Container CPU usage

No containers are running.

Container memory usage

No containers are running.

Hello and welcome,

You do not download container - you download images.
If you start/run/instantiate an image a container is created based on an image.
Therefore if you download an image you will find it in the images-section of your docker desktop. Or you can run docker image ls from a command prompt or powershell to see the list of images locally available.
Within the containers-section of your docker desktop-dashboard you will find all running containers (and I think the stopped containers, too). The same can be done using docker ps -a from the command prompt / powershell.

Here you can see the list of images locally available on my computer:

Best regards
Matthias

The output of their docker info command suggests they do have containers though, but they aren’t shown in the GUI

@deanayalon you are right about the output of docker info.
Would be interesting to see the output of docker ps -a - and the position of the marked switch in the GUI.


As docker info states that all five containers are stopped I guess that the switch is moved to the right to display only running containers.
moved to the right