龙空技术网

【2】docker 添加容器镜像

开发运维那点事 174

前言:

现时姐妹们对“centos6adb”大约比较关怀,咱们都需要知道一些“centos6adb”的相关文章。那么小编在网络上搜集了一些关于“centos6adb””的相关资讯,希望我们能喜欢,朋友们一起来了解一下吧!

添加您创建的容器镜像。

例如,通过安装 Nginx 更新官方镜像并将其作为容器的新镜像添加。容器每次执行 docker run 命令时都会生成,因此请按照以下方式添加最新执行的容器。

# show images[root@dlp ~]# docker imagesREPOSITORY   TAG       IMAGE ID       CREATED        SIZEcentos       latest    300e315adb2f   5 months ago   209MB# start a Container and install nginx[root@dlp ~]# docker run centos /bin/bash -c "yum -y install nginx"[root@dlp ~]# docker ps -a | head -2CONTAINER ID   IMAGE     COMMAND                  CREATED          STATUS                          PORTS     NAMES12e2766b510e   centos    "/bin/bash -c 'yum -…"   35 seconds ago   Exited (0) 3 seconds ago                  affectionate_shtern# add the image[root@dlp ~]# docker commit 12e2766b510e srv.world/centos-nginxsha256:6adb1438d24f7f1f55438f9ff86d67b78f05ccee8bca7464247473aa588691be[root@dlp ~]# docker imagesREPOSITORY               TAG       IMAGE ID       CREATED         SIZEsrv.world/centos-nginx   latest    6adb1438d24f   8 seconds ago   289MBcentos                   latest    300e315adb2f   5 months ago    209MB# Generate a Container from the new image and execute [which] to make sure nginx exists[root@dlp ~]# docker run srv.world/centos-nginx /usr/bin/whereis nginxnginx: /usr/sbin/nginx /usr/lib64/nginx /etc/nginx /usr/share/nginx /usr/share/man/man3/nginx.3pm.gz /usr/share/man/man8/nginx.8.gz

标签: #centos6adb