Docker的安装使用

现在Docker分为社区版Docker CE和企业版Docker EE。Docker CE免费,Docker EE收费。Docker CE又分为Docker CE Edge和Docker CE Stable。Docker CE Edge每1个月发布一个版本,Docker CE Stable每3个月发布一个版本。Stable表示稳定版,所以下面只介绍Docker CE Stable。

 

  Docker支持以下Ubuntu版本:

  • Xenial 16.04 (LTS)
  • Bionic 18.04 (LTS)
  • Cosmic 18.10
  • Disco 19.04
  • 其他...

  这里再说一下我的Ubuntu版本是16.04的...

卸载旧版本

$ sudo apt-get remove docker docker-engine docker.io containerd runc

安装Docker CE

step1. 更新源,安装相应的依赖包

$ sudo apt-get update
$ sudo apt-get install apt-transport-https ca-certificates curl software-properties-common

step2. 安装Docker镜像(这里我用的是国内阿里Docker CE镜像)

我使用过很多方法来装Docker,其他的镜像总会出现各种奇奇怪怪的问题,只有阿里镜像安装的时候时最成功的,没碰到什么妖魔鬼怪- -!

curl -fsSL http://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -

安装完成后,使用指纹9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88对key进行验证

$ sudo apt-key fingerprint 0EBFCD88
pub   4096R/0EBFCD88 2017-02-22
      Key fingerprint = 9DC8 5822 9FC7 DD38 854A  E2D8 8D81 803C 0EBF CD88
uid                  Docker Release (CE deb) <docker@docker.com>
sub   4096R/F273FCD8 2017-02-22

step3. 安装稳定版仓库

这里我还是使用的阿里repository

sudo add-apt-repository "deb [arch=amd64] http://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"

step4. 安装Docker CE

$ sudo apt-get update
$ sudo apt-get install docker-ce

step5. 验证Docker CE是否安装成功

以root身份运行hello-world,答应出以下信息,则证明安装成功

$ sudo docker run hello-world

Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
1b930d010525: Pull complete                                                                                                                                  Digest: sha256:c3b4ada4687bbaa170745b3e4dd8ac3f194ca95b2d0518b417fb47e5879d9b5f
Status: Downloaded newer image for hello-world:latest


Hello from Docker!
This message shows that your installation appears to be working correctly.


To generate this message, Docker took the following steps:
 1. The Docker client contacted the Docker daemon.
 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
    (amd64)
 3. The Docker daemon created a new container from that image which runs the
    executable that produces the output you are currently reading.
 4. The Docker daemon streamed that output to the Docker client, which sent it
    to your terminal.


To try something more ambitious, you can run an Ubuntu container with:
 $ docker run -it ubuntu bash


Share images, automate workflows, and more with a free Docker ID:
 https://hub.docker.com/


For more examples and ideas, visit:
 https://docs.docker.com/get-started/
 
Docker是一种开源的容器化平台,可以帮助开发者更轻松地创建、部署和运行应用程序。以下是Docker安装使用步骤: 1. 安装Docker:首先,你需要在你的操作系统上安装DockerDocker支持多个操作系统,包括Windows、macOS和Linux。你可以访问Docker官方网站(https://www.docker.com/get-started)根据你的操作系统下载并安装Docker。 2. 验证安装安装完成后,打开终端或命令提示符窗口,并输入以下命令来验证Docker是否已成功安装: ``` docker version ``` 如果安装成功,你将看到Docker的版本信息。 3. 获取镜像:Docker使用镜像来创建和运行容器。你可以从Docker Hub(https://hub.docker.com/)上获取各种不同的镜像。例如,要获取一个名为"ubuntu"的Ubuntu镜像,你可以使用以下命令: ``` docker pull ubuntu ``` 4. 运行容器:一旦你有了镜像,你可以使用`docker run`命令来创建和运行容器。例如,要创建一个名为"mycontainer"的新容器,你可以使用以下命令: ``` docker run --name mycontainer ubuntu ``` 这将基于"ubuntu"镜像创建一个新的容器,并将其命名为"mycontainer"。 5. 进入容器:要进入正在运行的容器,可以使用`docker exec`命令。例如,要进入名为"mycontainer"的容器,你可以使用以下命令: ``` docker exec -it mycontainer /bin/bash ``` 这将进入到容器的交互式终端中。 这只是Docker的基本用法,你还可以使用Docker的其他功能,如构建自定义镜像、管理容器网络等。你可以参考Docker官方文档(https://docs.docker.com/)了解更多详细信息。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值