Category: Uncategorized
-
Installing Docker on Windows Without Docker Desktop
Sometimes, you want I want to run on Docker container on Windows, but I don’t want to have to worry about using Docker Desktop. Instead, I use Windows Subsystem Linux (WSL) in conjunction with the Docker engine via a terminal window. In this guide, I’ll show you how to install Docker on Windows 10 or… Read more
-
Quick Guide to Docker
What is Docker? Docker is a platform that enables developers to build, deploy and manage containers – which are lightweight, portable units that package an application and it’s dependencies, ensuring consistency across various environments. Key Concepts Image: A read-only template defining your applications and it’s environment, including variables and mapped drives. Container: A runnable instance… Read more