I need pull a docker image of tensorflow.
I know that for pull a image i have to use this commmand:
docker pull tensorflow/tensorflow:2.4.3
But i dont want my image with this name:
tensorflow/tensorflow:2.4.3
How can i change this name in the moment that i pull it ?
2
Answers
The location you pulled it from and the name are tightly coupled. So you can retag after pulling:
Otherwise, you’d need to pull the image from outside of docker and side load the image, but that’s really more effort than it’s worth, and losses efficiencies like skipping already pulled layers.
you could also do: