".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 CE(Community Edition社区版)是一个免费的开源工具,具有用于应用程序容器化的容器运行时环境。Vultr是家知名[海外服务器](/#)商家,提供有经济实惠的云服务器产品,国内站长常用Vultr服务器来托管网站。本文主要介绍下如何在Vultr的Debian 11服务器上安装Docker社区版。
![](https://www.idcspy.com/wp-content/uploads/2022/01/1-101.jpg)
点击访问:[Vultr官网](https://go.idcspy.com/www.vultr.com/)
1、首先部署[Vultr](/#) Debian 11服务器,然后使用SSH工具连接到服务器上,更新服务器后,创建具有sudo访问权限的非root用户,接下来便可开始安装Docker社区版。
2、安装Docker运行时所需的依赖项。
> $ sudo apt install apt-transport-https lsb-release ca-certificates curl gnupg -y
3、下载并添加Docker GPG 密钥。
> $ curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg –dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
添加下载的存储库。
> $ echo “deb \[arch=$(dpkg –print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg\] https://download.docker.com/linux/debian $(lsb\_release -cs) stable” | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
更新系统。
> $ sudo apt update
4、安装Docker引擎。
> $ sudo apt -y install docker-ce docker-ce-cli containerd.io
5、验证所安装的Docker社区版版本。
> $ sudo docker version
设置Docker服务在系统启动时启动。
> $ sudo systemctl enable docker
检查Docker服务状态。
> $ sudo systemctl status docker
6、运行Docker容器。
> $ sudo docker run -d -p 80:80 docker/getting-started
Docker容器完成启动后,打开Web浏览器并访问URL:http://ServerIP(将ServerIP替换为我们使用的Vultr [Debian](/#) 11服务器IP地址即可)。"
松果号 作者:松果号原创文章,如若转载,请注明出处:https://www.6480i.com/archives/104366.html