Copying the Windows Application Image to Another Computer

If you want to copy the application image to another computer that has Docker installed and run it there:

  1. Save the application image using the following command:
    docker save -o generated-tar-file-path image-name

    For example:

    docker save -o win_10.5.0_x64_app.tar microfocus/extend-app:win_10.5.0_x64
  2. On the other computer, load the image using the following command:
    docker load -i image-tar-file-path

    For example:

    docker load -i win_10.5.0_x64_app.tar
  3. Run the application image on the other computer.