".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](/#)是一个开源应用容器引擎,以类似于虚拟机但不虚拟化的方式在自包含的环境中创建相关应用程序和服务。您可以在多个平台上下载并安装Docker,比如Windows、Linux发行版等。本文主要介绍下如何在基于Fedora系统的Hostwinds VPS上安装Docker。
Hostwinds VPS按所选地域不同,有[美国VPS](/#)和欧洲VPS配置产品可供选择,均支持主流的Windows或Linux发行版(如Debian、Fedora、CentOS、Ubuntu等),包含完全托管和非托管计划。Hostwinds VPS开通即用,附带易于使用的云控制门户,您可轻松地管理和使用服务器。
Fedora服务器安装Docker的流程比较简单。首先使用SSH工具远程登录[Hostwinds](/#) VPS服务器(用的是Fedora系统),然后运行下面命令安装DNF插件核心,以允许您使用DNF存储库安装应用程序。
> sudo dnf -y install DNF-plugins-core
接下来,运行下面命令在[Fedora](/#)服务器上添加稳定的存储库。
> sudo DNF config-manager \\
>
> –add-repo \\
>
> https://download.docker.com/linux/fedora/docker-ce.repo
运行以下命令在Fedora上安装最新版本的Docker应用。
> sudo dnf install docker-ce docker-ce-cli containerd.io
以上是在Hostwinds Fedora服务器上安装Docker的主要步骤介绍。成功安装Docker后,只需要配置一次Docker容器上面的应用,就可以跨平台,跨服务器,实现应用程序跨平台间的无缝衔接。"
松果号 作者:松果号原创文章,如若转载,请注明出处:https://www.6480i.com/archives/103364.html