How to install telnet in Docker for Windows 10
问题 When I run telnet command in Docker it does not run. Could you please tell me how to install telnet in Docker for Windows? 回答1: There is a docker image for it: docker run mikesplain/telnet <host> <port> 回答2: Old question I know but you can install telnet on docker for windows with the following in your dockerfile RUN powershell -Command Add-WindowsFeature "telnet-client" 回答3: If you are trying to telnet into your container to gain access to it, that isn't how you would want to connect. Docker