51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

Docker 安装 Ubuntu

Docker 安装 Ubuntu

Ubuntu 是基于Debian的Linux操作系统。

1、查看可用的 Ubuntu 版本
文章源自小柒网-https://www.yangxingzhen.cn/7195.html

访问Ubuntu镜像库地址:https://hub.docker.com/_/ubuntu?tab=tags&page=1
文章源自小柒网-https://www.yangxingzhen.cn/7195.html

可以通过Sort by查看其他版本的 Ubuntu。默认是最新版本ubuntu:latest 。
文章源自小柒网-https://www.yangxingzhen.cn/7195.html

文章源自小柒网-https://www.yangxingzhen.cn/7195.html

你也可以在下拉列表中找到其他你想要的版本:
文章源自小柒网-https://www.yangxingzhen.cn/7195.html

文章源自小柒网-https://www.yangxingzhen.cn/7195.html

2、拉取最新版的Ubuntu镜像
文章源自小柒网-https://www.yangxingzhen.cn/7195.html

[root@localhost ~]# docker pull ubuntu
文章源自小柒网-https://www.yangxingzhen.cn/7195.html

或者:
文章源自小柒网-https://www.yangxingzhen.cn/7195.html

[root@localhost ~]# docker pull ubuntu:latest
文章源自小柒网-https://www.yangxingzhen.cn/7195.html

3、查看本地镜像

[root@localhost ~]# docker images

在上图中可以看到我们已经安装了最新版本的 ubuntu。

4、运行容器,并且可以通过exec命令进入ubuntu容器

[root@localhost ~]# docker run -itd --name ubuntu-test ubuntu

ca117e96f94de48e87b63f18f7ced0da365a0965a2486e761346610d767e9ebd

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

5、安装成功

最后我们可以通过docker ps命令查看容器的运行信息:

[root@localhost ~]# docker ps

历史上的今天

6 月
18

赞(1)
未经允许不得转载:工具盒子 » Docker 安装 Ubuntu