Home Uncategorized

Uncategorized

Note: Kubernetes uses some Docker-like containers tool so remember you won’t be able to run a Windows-based container on a Docker host with Linux on it – because Docker uses the host machine kernel.However, there are ways to work around this limitation:Docker for Windows with WSL2: Docker Desktop for Windows can use the Windows Subsystem for Linux 2 (WSL2)...

Docker

0
Docker commands:docker runis like docker create + docker start-it – interactive; will connect to the standard input of the container – thus allowing for interacting using the keyboardwe can run docker run -it sh – this will override the default image command and just start a shellusually, you run the container with its default command and then...