How to install minikube and docker in Windows 10?

前端 未结 2 1112
迷失自我
迷失自我 2021-01-22 06:52

I want to work on minikube . I installed it successfully but I learned that in Windows 10 , I need to disable Hyper-v . Now , when I try to install docker , it needs Hyper-v en

2条回答
  •  [愿得一人]
    2021-01-22 07:19

    @bkr you don't have to turn off Hyper-V to use minikube.

    Scenarios are like this:

    1) Use Docker, and minikube with Hyper-V (you will find instruction in an answer above) Enable Hyper-V, install Docker, use minikube with arguments minikube start --vm-driver hyperv --hyperv-virtual-switch "" In the same time you will be able to interact with Docker in normal way. Use kubectl/minikube commands for your Kubernetes cluster and Docker commands for Docker.
    2) Use VirtualBox for Kubernetes and Docker toolbox for Docker minikube start --vm-driver=virtualbox

    3) Use Docker for Windows and Kubernetes in Docker

提交回复
热议问题