Closed
Description
It would be nice to be able to have minikube scp
like minikube ssh
, to copy files in the the minikube node. An use case would be: copying Dockerfiles to the node to build custom docker images for Kubernetes.
In the meantime, for all of you that want this feature, here's a workaround:
scp -i $(minikube ssh-key) <file> docker@$(minikube ip):
edit: you can also use minikube docker-env
to set up the docker
client to point to minikube's docker daemon, and build the image locally. However, this still doesn't work for copying files...