I have configured a Docker image locally on my machine with tags
which consist of WordPress on it. I have uploaded this image to AWS S3 bucket and pulled the image from AWS EC2.
My issue is when I load the xxxx.tar.gz
on my EC2 instance
docker load -i xxxxx.tar.gz
it gets loaded but, the repository name
and tag
shows none
REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE
none none 271c6bafbc36 2 days ago 406.7 MB
Can anyone please tell me that how we can load an image(.tar.gz
) file with predefined name
and tags
You have to tag it, see
docker tag
, and the dochttps://docs.docker.com/reference/commandline/tag/
Tag an image into a repository