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.tar
list images to get image id ( to pass it to tag
command, for renaming the image )
docker image ls
rename the docker image and assign a tag to it
docker tag 36a9fc753a9f kalifulltools:version1.0
then, create a container from that image & start it & entering the bash
docker run -it -h full.kali --name kaliFull kalifulltools:version1.0 bash
Last updated
Was this helpful?