Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
Solve problems with interactive docker run when using PowerShell ISE
December 10, 2016
Q. I'm trying to use docker run interactively with cmd in PowerShell ISE and its not working, what can I do?
A. This seems to be a problem with the PowerShell ISE where an interactive cmd.exe with a docker run does not function. Instead use regular PowerShell CLI windows or a cmd.exe windows. An example to try is:
docker run -it microsoft/windowsservercore cmd.exe
You May Also Like