Click the "Run" button (play icon) to immediately start a container from that image.
Downloading Docker images is the first step toward running containers on your machine. While many developers use the command line, Docker Desktop provides a user-friendly interface to manage images without typing a single line of code.
If your image isn't downloading, check these three common culprits:
Here is everything you need to know about downloading (pulling) Docker images using Docker Desktop. The Quick Way: Search and Pull
Docker Desktop features a built-in search bar that connects directly to Docker Hub, the world's largest library of container images.
Some private images require you to be signed in. Click the "Sign In" button in the top right corner of Docker Desktop.
Once the download finishes, the image is stored locally on your hard drive. You can find and manage it in the on the left-hand sidebar. Image Management Tips Check Size: See how much disk space each image consumes.
If you are on a corporate network, you may need to configure proxy settings under Settings > Resources > Proxies .
By default, Docker Desktop downloads the latest tag. If you need a specific version for compatibility, follow these steps: Search for the image as described above. Click on the to open its detail page. Click the "Tag" dropdown menu. Select the specific version (e.g., 3.11-slim for Python). Click Pull to start the download. Where to Find Your Downloaded Images