What is the linux version of docker for mac k8s mode?

6/10/2018

On a Mac, Docker has a built in kubernetes mode that helps you set up a dev cluster in 1 click. Is there a way to do with with Docker-CE on my linux laptop? If not, what is the recommended approach (seems weird that this is actually easier on a mac or windows lol)

-- Paul Becotte
docker
kubernetes

1 Answer

6/10/2018

To get the current OS version, try kubectl get nodes -o wide

If you're looking to run a local Kubernetes cluster, you should use Minikube: https://kubernetes.io/docs/getting-started-guides/minikube/

-- brandon-barnett
Source: StackOverflow