This repository contains a number of docker build scripts used to create various development images.
This section contains a number of remote debugging images used for .NET Framework.
-
Contains a .NET framework 4.7.1 image built on Windows Server core. Running inside the image is VS2017 x64 Remote Debugging with a powershell console
Here are some reminders for general docker commands:
-
Remove "None" images:
docker rmi $(docker images -f “dangling=true” -q)
or
docker rmi -f $(docker images -f “dangling=true” -q)