Docker renames the image name and TAG operation

Docker renames the image name and TAG operation

When using docker images, images with both REPOSITORY and TAG set to none may appear, as shown below:

At this point, we can rename the image

# docker tag IMAGEID (image id) REPOSITORY:TAG (warehouse: tag)

Additional knowledge: Docker image rename

The docker image name was accidentally written incorrectly, for example, you wanted to name it ubuntu1604-arm-qt, but wrote it as unbuntu1604-arm-qt. How to change it back?

Rename with docker tag

docker images find image_id

The image id found is efeb4214cfc4.

haojc@ubuntu:~/docker/ubuntu1604-arm-qt$ docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
sword2000/unbuntu1604-arm-qt 1.0 efeb4214cfc4 13 hours ago 7.05GB
hello-world latest fce289e99eb9 7 months ago 1.84kB

Rename with docker tag <image_id>

docker tag efeb4214cfc4 ubuntu1604-arm-qt

Then delete the original image name

docker rmi sword2000/unbuntu1604-arm-qt:1.0

haojc@ubuntu:~/docker/ubuntu1604-arm-qt$ docker rmi sword2000/ubuntu1604-arm-qt:1.0
Untagged: sword2000/unbuntu1604-arm-qt:1.0
haojc@ubuntu:~/docker/ubuntu1604-arm-qt$ docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
sword2000/ubuntu1604-arm-qt 1.0 efeb4214cfc4 13 hours ago 7.05GB
hello-world latest fce289e99eb9 7 months ago 1.84kB

The above Docker renaming image name and TAG operation is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • How to use Docker to package and deploy images locally
  • How to change the domestic image source for Docker
  • How to view files in Docker image
  • How to use Docker buildx to build multi-platform images and push them to private repositories
  • Issues with using Azure Container Registry to store images

<<:  Introduction to several ways to introduce CSS in HTML

>>:  Detailed explanation of Vue development Sort component code

Recommend

Detailed explanation of Kubernetes pod orchestration and lifecycle

Table of contents K8S Master Basic Architecture P...

Implementing timed page refresh or redirect based on meta

Use meta to implement timed refresh or jump of th...

Some summary of html to pdf conversion cases (multiple pictures recommended)

Due to work requirements, I recently spent some t...

Detailed tutorial on how to automatically install CentOS7.6 using PXE

1. Demand The base has 300 new servers, and needs...

How to Install and Configure Postfix Mail Server on CentOS 8

Postfix is ​​a free and open source MTA (Mail Tra...

Vue + element to dynamically display background data to options

need: Implement dynamic display of option values ...

MySQL 8.0.15 installation graphic tutorial and database basics

MySQL software installation and database basics a...

Vue detailed explanation of mixins usage

Table of contents Preface 1. What are Mixins? 2. ...

A brief talk on responsive design

1. What is responsive design? Responsive design i...

XHTML three document type declarations

XHTML defines three document type declarations. T...

Tutorial on how to quickly deploy a Nebula Graph cluster using Docker swarm

1. Introduction This article describes how to use...