I am trying to “dir” a UNC path from within the “cmd” command that I invoked as follows
docker run -it python cmd
From within the container, I am trying to dir
the UNC path like this :
dir \\servername.full.dns.name\path
This is the error that I get when I try to map to a drive
C:\>net use * \\servername.full.dns.name\path
System error 64 has occurred.
The specified network name is no longer available.
I also ensured that I am able to ping the server
Expected behavior
I should be able to see files and folders in that location with the dir
command and
should be able to map a network location to a drive letter with the net use
command
Actual behavior
The cmd keeps running. The command window just staring at me with the blinker that goes on blinking
Information
Docker version (both server and client) : 18.03.1-ee-5
Api version 1.37
Steps to reproduce the behavior
Shown above