Does Kubernetes support Docker CE on Linux?

3/25/2019

I read about things that there are some Kubernetes issues with Docker support. As far as I understood Kubernetes doesn't support Docker CE on Linux. Does Kubernetes support Docker CE on Linux?

-- ottomancivil
docker
kubernetes
windows-ce

2 Answers

3/25/2019

Kubernetes suppors Docker CE on Centos or RHEL.

Would you elaborate on the reason for the question pls

-- Anil Jayan Leela
Source: StackOverflow

3/25/2019

Nothing prevents you from building a kubernetes cluster on top of Docker CE. It just isn't built-in on the CE-version (like it is in the windows version).

You can simply install kubectl, kubeadm and kubelet and create a cluster. There are multiple ways to set up the cluster to suit your needs. For local, single-node testing you can use minikube, which is incredibly user friendly to set up.

-- Christian W.
Source: StackOverflow