".extra-menu { background-color: #f3f3f3; padding: 20px; } .extra-menu .extra-menu-h { height: 36px; } .extra-menu .extra-menu-h h3 { display:inline-block; } .extra-menu ul a{ text-decoration: none; } .extra-menu .menu-child { text-indent: 4em; } .extra-menu .menu-child:before { left: 4em; } .extra-menu .extra-menu-h h3 { line-height: 36px; } .collapse-toggle { float: right; cursor: pointer; user-select: none; display: inline-flex; align-items: center; font-size: 14px; } .collapse-toggle img { width: 30%; transform: rotate(180deg); } .collapse-content { margin-bottom: 0px !important; margin-top: 20px !important; overflow: hidden; max-height: 0; transition: max-height 0.3s ease-out; } .collapse-content.expanded { max-height: 1000px; /\* 设置一个足够大的值,确保内容可以完全展开 \*/ } .ph-id { position: relative; top: -90px; } jQuery(document).ready(function( $ ) { $('.collapse-toggle').on('click',function(){ var content = document.querySelector('.collapse-content'); content.classList.toggle('expanded'); if (content.classList.contains('expanded')) { $(this).find('div').text('收起'); $(this).find('img').css('transform','rotate(180deg)'); } else { $(this).find('div').text('展开'); $(this).find('img').css('transform','rotate(0deg)'); } }) })
Docker是一个开源轻量级的容器管理系统,主要运行于Linux和Windows,适用于云计算需求。Hostwinds[美国主机](https://www.idcspy.com/)商近几年颇受国内站长青睐,尤其是旗下[美国云主机](https://www.idcspy.com/cloud-hosting.html "美国云主机")VPS、专用服务器等热门产品,那么如何将Docker安装到Hostwinds VPS上呢?本文将介绍下在Ubuntu上安装Docker的操作步骤。
![](https://www.idcspy.com/wp-content/uploads/2021/07/docker.jpg)
步骤1、首先您可以使用SSH登录到您的[Hostwinds VPS](/#),并确保您的Ubuntu操作系统是最新的。
步骤2、接下来您要为 Ubuntu 安装 docker 所需的软件包。
> sudo apt-get install \\
> apt-transport-https \\
> ca-certificates \\
> curl \\
> GnuPG-agent \\
> software-properties-common
步骤3、将 GPG 密钥添加到密钥环。
> curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add –
检查 Docker 文档以获取当前指纹。
步骤4、检查密钥指纹以确保匹配。
> sudo apt-key fingerprint 0EBFCD88
如果指纹不匹配,建议查看 Docker 官方文档以获取最新指纹。
步骤5、将存储库添加到操作系统的列表中。
> sudo add-apt-repository \\
> “deb \[arch=amd64\] https://download.docker.com/linux/ubuntu \\
> (lsb\_release -cs) \\
> stable”
步骤6、确保 Apt 包索引是最新的。(这很重要,尤其是在添加存储库之后。)
> sudo apt-get update
步骤7、安装 Docker 引擎。
> sudo apt-get install docker-ce docker-ce-cli containerd.io
步骤8、通过下载并运行 Docker 提供的 hello-world 容器来确保 Docker 正在运行。
> sudo docker run hello-world
运行上面的命令下载官方 Docker 测试镜像并在新容器中运行它。当它运行时,它只会打印一条消息并退出。这样表示您将Docker已成功安装到Hostwinds Ubuntu服务器,后续您便可以使用它了。"
松果号 作者:松果号原创文章,如若转载,请注明出处:https://www.6480i.com/archives/105504.html