Switching Docker Desktop to Docker CLI in Easy Way
Hello everyone! In this blog, we'll explore an important aspect of Docker development with Sitecore. Most of us are familiar with using Docker Desktop for our development needs—it's user-friendly and offers a great interface for managing your Docker environment. However, the downside is that it's a licensed product. Let’s explore how Docker CLI can help us eliminate the licensing costs associated with Docker Desktop. We'll also look at how smoothly we can transition from using Docker Desktop to Docker CLI Step 1 : Uninstall Docker Desktop Step 2 : Install Docker Engine and CLI Uninstall Docker Desktop Make sure containers are stopped using following cmdlets: # Leave swarm mode (this will automatically stop and remove services and overlay networks) docker swarm leave --force # Stops all containers docker ps --quiet | ForEach-Object {docker stop $_} If you want to remove all containers, container images, networks, and volumes from your syste...