Difference between revisions of "Docker"
Line 11: | Line 11: | ||
https://master.dockerproject.org/windows/amd64/docker-1.14.0-dev.zip | https://master.dockerproject.org/windows/amd64/docker-1.14.0-dev.zip | ||
+ | |||
+ | Work-in-progress: | ||
+ | After installing <u>DockerMsftProvider</u> check the available packages with <code>Find-Package -ProviderName DockerMsftProvider -AllVersions | Format-List</code> and if the latest is 1.12.2-cs2-ws-beta then download the package directly from [https://get.docker.com/builds/Windows/x86_64/docker-1.13.0.zip Docker], and after installation via <code>AddPackage</code> overwrite docker.exe and dockerd.exe with the ones from the zip file. Restart the the vm and check with <code>docker version</code>. | ||
+ | (Problem is that docker 1.12.2 works with core functionality but has issues with port forwarding) | ||
==Debugging== | ==Debugging== |
Revision as of 14:06, 7 February 2017
Contents
XenServer
Windows 2016
https://master.dockerproject.org/windows/amd64/docker-1.14.0-dev.zip
Work-in-progress:
After installing DockerMsftProvider check the available packages with Find-Package -ProviderName DockerMsftProvider -AllVersions | Format-List
and if the latest is 1.12.2-cs2-ws-beta then download the package directly from Docker, and after installation via AddPackage
overwrite docker.exe and dockerd.exe with the ones from the zip file. Restart the the vm and check with docker version
.
(Problem is that docker 1.12.2 works with core functionality but has issues with port forwarding)
Debugging
- Install telnet client
dism /online /Enable-Feature /FeatureName:TelnetClient
misc
show container IP
docker inspect -f '{{ .NetworkSettings.IPAddress }}' <containername>