美文网首页
Docker - 更新ubuntu,保存镜像

Docker - 更新ubuntu,保存镜像

作者: PatrickHC | 来源:发表于2017-09-16 00:12 被阅读44次
    1. 启动ubuntu并且换源(没有vim的就装一个)
        sudo vim /etc/apt/source.list
    
    deb http://mirrors.sohu.com/ubuntu/ trusty main restricted universe multiverse
    
    deb http://mirrors.sohu.com/ubuntu/ trusty-security main restricted universe multiverse
    
    deb http://mirrors.sohu.com/ubuntu/ trusty-updates main restricted universe multiverse
    
    deb http://mirrors.sohu.com/ubuntu/ trusty-proposed main restricted universe multiverse
    
    deb http://mirrors.sohu.com/ubuntu/ trusty-backports main restricted universe multiverse
    
    deb-src http://mirrors.sohu.com/ubuntu/ trusty main restricted universe multiverse
    
    deb-src http://mirrors.sohu.com/ubuntu/ trusty-security main restricted universe multiverse
    
    deb-src http://mirrors.sohu.com/ubuntu/ trusty-updates main restricted universe multiverse
    
    deb-src http://mirrors.sohu.com/ubuntu/ trusty-proposed main restricted universe multiverse
    
    deb-src http://mirrors.sohu.com/ubuntu/ trusty-backports main restricted universe multiverse
    
    
    
    deb http://mirrors.163.com/ubuntu/ trusty main restricted universe multiverse
    
    deb http://mirrors.163.com/ubuntu/ trusty-security main restricted universe multiverse
    
    deb http://mirrors.163.com/ubuntu/ trusty-updates main restricted universe multiverse
    
    deb http://mirrors.163.com/ubuntu/ trusty-proposed main restricted universe multiverse
    
    deb http://mirrors.163.com/ubuntu/ trusty-backports main restricted universe multiverse
    
    deb-src http://mirrors.163.com/ubuntu/ trusty main restricted universe multiverse
    
    deb-src http://mirrors.163.com/ubuntu/ trusty-security main restricted universe multiverse
    
    deb-src http://mirrors.163.com/ubuntu/ trusty-updates main restricted universe multiverse
    
    deb-src http://mirrors.163.com/ubuntu/ trusty-proposed main restricted universe multiverse
    
    deb-src http://mirrors.163.com/ubuntu/ trusty-backports main restricted universe multiverse
    
    
    
    deb-src http://archive.ubuntu.com/ubuntu xenial main restricted #Added by software-properties
    
    deb http://mirrors.aliyun.com/ubuntu/ xenial main restricted
    
    deb-src http://mirrors.aliyun.com/ubuntu/ xenial main restricted multiverse universe #Added by software-properties
    
    deb http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted
    
    deb-src http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted multiverse universe #Added by software-properties
    
    deb http://mirrors.aliyun.com/ubuntu/ xenial universe
    
    deb http://mirrors.aliyun.com/ubuntu/ xenial-updates universe
    
    deb http://mirrors.aliyun.com/ubuntu/ xenial multiverse
    
    deb http://mirrors.aliyun.com/ubuntu/ xenial-updates multiverse
    
    deb http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse
    
    deb-src http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse #Added by software-properties
    
    deb http://archive.canonical.com/ubuntu xenial partner
    
    deb-src http://archive.canonical.com/ubuntu xenial partner
    
    deb http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted
    
    deb-src http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted multiverse universe #Added by software-properties
    
    deb http://mirrors.aliyun.com/ubuntu/ xenial-security universe
    
    deb http://mirrors.aliyun.com/ubuntu/ xenial-security multiverse
    
    1. 保存docker镜像(第一步打开的进程不要关闭,再运行一个cmd/powershell)
      首先用 docker ps -l 拉出Container ID;
      然后docker commit保存,注意:id填前三位即可
      最后看结果(下图红线处)


      image.png
    2. 然后可以运行检查,发现这个镜像保存了第一步所做的修改。
      注意:我第一次直接更新的时候,发现使用的源还是ubuntu官方源(此处没有更换源);但是当我vim查看之后,发现源的地址是更新好的。退出vim之后再更新,就更新


      image.png
    3. 我的Docker配置

    {
      "registry-mirrors": [
        "http://d40f74cc.m.daocloud.io"
      ],
      "insecure-registries": []
    }
    

    相关文章

      网友评论

          本文标题:Docker - 更新ubuntu,保存镜像

          本文链接:https://www.haomeiwen.com/subject/ifasdxtx.html