docker修改镜像名称以及保存镜像文件

1、修改镜像名

[ ~]# docker images
REPOSITORY                  TAG                 IMAGE ID            CREATED             SIZE
absolutapps/oracle-12c-ee   latest              ad9bdfc002e7        3 years ago         6.12GB
[ ~]# docker tag ad9bdfc002e7 oracle-12c-ee:latest
[ ~]# docker images
REPOSITORY                  TAG                 IMAGE ID            CREATED             SIZE
absolutapps/oracle-12c-ee   latest              ad9bdfc002e7        3 years ago         6.12GB
oracle-12c-ee               latest              ad9bdfc002e7        3 years ago         6.12GB

2、保存镜像,便于镜像转移

docker save ad9bdfc002e7 -o /home/docker_oracle-12c-ee.tar

相关推荐