Copying the Linux Application Image to Another Computer

If you want to copy the application image to another computer that has podman 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:

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

    For example:

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