2016-09-20

I took a clean machine (Windows 10 Enterprise w/out the Anniversary Update) and installed (in this order) Full IIS, Hyper-V, VS2015 Enterprise, .NET Core 1.0.1 Tooling Preview 2, Docker for Windows, Visual Studio Docker Tools, and a few other random programs.

I then opened VS2015 and created a default .NET core website. When I run (F5) all works as expected. I then right clicked on the project and went to "Add->Docker Support". Now when trying to run (F5) using Docker I see this error message:

I have searched online and the only thing I can find that might explain it is that I don't think Shared Drives are working. I did set it up in Docker->Shared Drives, but when I run:
docker run --rm -v c:/Users:/data alpine ls /data
the response is empty.

Likewise when I try using busy box the directory is empty.

docker run -it -v /C/Users:/wormhole busybox
cd wormhole
ls

I have tried using Windows for Docker 1.12.1-stable and beta 26. Both have the same issue.

Some have indicated that Antivirus could cause a problem. I do have Mcafee installed, but I cannot uninstall or disable the antivirus software.

Some have suggested that passwords with unusual characters can cause this issue but that does not apply here.

I don't know that shared drives are causing the VS2015 error, but it seems like a good place to start since shared drives are broken.

I have restarted bot hdock and the computer many times, to no avail.

Any Ideas?

Show more