Hi,
I am not sure what you are trying to achieve, but if you want to move images / containers around between machines this way you could do the following:
start a container with your image
docker run …
export that container
docker export [container_name] -o [outputfile]
This will create a tar file containing the containers file system
Copy the tar file to another host and run the below command
docker import [outputfile] [imagename]:[tag]
This will create an copy of the original image on that host.