

Something went wrong at step 'Installing/Updating IBM Planning Analytics Docker images' Loading image file D:\paw\images\images.tar, this may take a while. Installing/Updating IBM Planning Analytics Docker images Visual studio (offline) using this link and re-booted the server. I installed docker ce on windows server 2016. # Register the Docker daemon as a service. ::SetEnvironmentVariable("PATH", $newPath, # Add Docker to the path for the current session and to PATH to persist across sessions. Next, use the following PowerShell commands to add the Docker folder location to the system's PATH variable and run the Docker executable as a service. # cd Įxpand-Archive docker-17.06.2-ee-16.zip -DestinationPath $Env:ProgramFiles Force Then unzip the compressed file and move the Docker executables to the system's program files. Once the machine is up and running again, launch a PowerShell console. Install-WindowsFeature containers | Out-Null So the first step required is installing the container feature on the Windows 2012 Server and then rebooting the machine when prompted. Let's switch to the Windows 2012 Server and assume you have placed the Docker Enterprise installation files and the image on D:\.

Install Docker Enterprise on Windows Server 2016 ^ We can now copy the two files: Docker Enterprise Edition for Windows Server 2016 as a zipped file and a test Docker image we have saved as "nano.tar" in the previous step to the target Windows 2012 Server. $URL = '' invoke-webrequest -UseBasicparsing -Outfile docker-17.06.2-ee-16.zip -Uri $URL We will need this because we don't have internet access on Windows Server 2016.

Now that we have a Docker image, let's use PowerShell to download "Docker Enterprise Edition" to our local workstation as a zip file. This will save the image as "nano.tar" in your current working directory. Docker save -o nano.tar hello-world:nanoserver-sac2016
