Hi@akhtar,
In minikube you don't have to download images from docker hub. Kubernetes will download automatically. You have to run the below given command to launch Jenkins pod.
$ kubectl run Jenkins --image=jenkins
You can also expose this pod.
$ kubectl expose pod Jenkins --port=80 --type=NodePort
Now you can connect your jenkins from anywhere within the same network.