BUG REPORT
minikube version: v0.8.0
Installed from: https://aur.archlinux.org/packages/minikube/
Arch Linux
"DriverName": "virtualbox",
Installed from: https://aur.archlinux.org/packages/virtualbox-ext-oracle/
Docker version 1.12.1, build 23cf638
Installed from: https://www.archlinux.org/packages/community/x86_64/docker/
Minikube does not work with pycharm docker integration.
Pycharm docker integration is useful, because:
Steps to reproduce:
export DOCKER_TLS_VERIFY="1"
export DOCKER_HOST="tcp://192.168.99.100:2376"
export DOCKER_CERT_PATH="/home/kozikow/.minikube/certs"
export DOCKER_API_VERSION="1.23"
# Run this command to configure your shell:
# eval $(minikube docker-env)
Fill fields in the dialog according to "minikube docker-env":

Afterwards the dialog is stuck on "Getting Remote Interpreter version".
I didn't see anything special in logs (stdout and stderr of ~/pycharm-2016.2/bin/pycharm.sh )
Pycharm integration works with the docker image created by the "docker-machine" and ticking the
"Import credentials from docker machine".
Supply unix:///var/tmp/docker.sock as API-url
I have seen similar symptoms with pycharm using non-minikube docker.
It was solved after cleaning my images with docker rmi $(docker images -q)
I tried cleaning images inside minikube, but it did not help with my problem.
There are 3 images in minikube that I can't delete:
I suspect that pycharm have some problem with those images. gcloud docker pull of any of those images on localhost docker could help confirm those suspicions.
Replacing tcp:// by https:// in the api url works.
For reference, setup that worked for me:
minikube docker-env:
export DOCKER_TLS_VERIFY="1"
export DOCKER_HOST="tcp://192.168.99.100:2376"
export DOCKER_CERT_PATH="/home/kozikow/.minikube/certs"
export DOCKER_API_VERSION="1.23"
# Run this command to configure your shell:
# eval $(minikube docker-env)

I encountered a few more bugs on the way, so I wrote a blog post about using pycharm with minikube: https://kozikow.com/2016/09/16/using-pycharm-docker-integration-with-minikube/
@kozikow glad you got it to work - and awesome blog post, thanks!
Most helpful comment
I encountered a few more bugs on the way, so I wrote a blog post about using pycharm with minikube: https://kozikow.com/2016/09/16/using-pycharm-docker-integration-with-minikube/