当前位置:首页 » 《关注互联网》 » 正文

docker镜像下载

16 人参与  2024年10月13日 16:00  分类 : 《关注互联网》  评论

点击全文阅读


1、搜索镜像

[root@localhost ~]# docker search ubuntu

2、下载ubuntu系统镜像(容器架构与宿主机相同)

[root@localhost ~]# docker pull ubuntu  #选择stars值最高镜像下载,默认为latest版

[root@localhost ~]# docker images

3、查看镜像支持的架构

[root@localhost ~]# docker image inspect ubuntu:latest | grep "Architecture"

4、启动ubuntu容器

[root@localhost ~]# docker run -itd --restart=always --name ubuntu ubuntu:latest

[root@localhost ~]# docker ps

[root@localhost ~]# docker exec -it ubuntu bash

root@5e211d347d1e:/# uname -a #查容器系统版本

注:也可通过镜像仓库的官站找到镜像的地址,进行镜像的下载。

官方镜像站:https://hub.docker.com 

国内镜像站:https://hub.daocloud.io/


点击全文阅读


本文链接:http://zhangshiyu.com/post/171364.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1