Is there a way to enable kubernetes on docker via command line on linux?

7/31/2019

I am using docker and trying to enable kubernetes and set CPU and Memory via command line.

I have looked at this answer but unfortunately cannot find this file.

Is there any way to enable Kubernetes on Docker for Mac via terminal?

-- J. Doe
docker
kubernetes
linux

1 Answer

7/31/2019

Docker does not have an app-ified version for Linux that I know of, so there is no relation to the Docker for Mac/Windows app. There are many tools to locally install Kubernetes on Linux so they probably didn't see much reason to make something new. Minikube is the traditional one, but you can also check out microk8s, k3s, KinD, and many others.

-- coderanger
Source: StackOverflow