Importing Docker Image to Another Host & Creating a Container
after copying the .tar file (the image file) to the machine, load the image
docker load -i KaliFullImage.tarlist images to get image id ( to pass it to tag command, for renaming the image )
docker image lsrename the docker image and assign a tag to it
docker tag 36a9fc753a9f kalifulltools:version1.0then, create a container from that image & start it & entering the bash
docker run -it -h full.kali --name kaliFull kalifulltools:version1.0 bashLast updated
Was this helpful?