Hyper-V Could Not Connect to MobyLinuxVM of Docker & Docker Won't Run

Solution 1:

Perform the following:

docker run --privileged -it -v /var/run/docker.sock:/var/run/docker.sock jongallant/ubuntu-docker-client 
docker run --net=host --ipc=host --uts=host --pid=host -it --security-opt=seccomp=unconfined --privileged --rm -v /:/host alpine /bin/sh
chroot /host

Now you are in, ls the file system.

If you find a better way let me know.

From: https://blog.jongallant.com/2017/11/ssh-into-docker-vm-windows/