Windows Docker Desktop kubernetes - ghdrako/doc_snipets GitHub Wiki

Verify your Kubernetes cluster

kubectl get nodes

External IP is none - but is ip host machine or simply localhost

Show kubernetes container - by default docker container ls not show

docker info

In linux within winows we can manage k8 from Docker Desctop

Docker for Windows stuck at “Kubernetes is Starting”

Do usuniecia
C:\Users\<your_user_name>\AppData\Local\Docker\pki 
.kube

docker-how-do-you-disable-auto-restart-on-a-container

You can use the --restart=unless-stopped option, as @Shibashis mentioned, or update the restart policy (this requires docker 1.11 or newer);

See the documentation for docker update and Docker restart policies.

docker update --restart=no my-container

that updates the restart-policy for an existing container (my-container)