Certy Task

Ubuntu20.04安装Docker-Compose

Posted on by

先决条件 我们假设您在Ubuntu机器上安装了 Docker 。 在Ubuntu上安装Docker Compose Docker Compose是单个二进制文件。 安装非常简单。 我们将文件下载到系统PATH 中的目录中,并使其可执行。 官方的Ubuntu 20.04存储库中提供了Docker Compose软件包,但它不一定总是最新版本。 使用 curl 将Compose文件下载到/usr/local/bin目录中: sudo curl -L “https://github.com/docker/compose/releases/download/1.25.5/docker-compose-$(uname -s)-$(uname -m)” -o /usr/local/bin/docker-compose 下载完成后,将可执行文件权限应用于文件: sudo chmod +x /usr/local/bin/docker-compose 安装完成,只要在目录下建立docker-compose.yml touch docker-compose.yml  

Ubuntu20.04安装docker

Posted on by

输入以下命令: #使用 apt-get 进行安装 # step 1: 安装必要的一些系统工具 sudo apt-get update sudo apt-get -y install apt-transport-https ca-certificates curl software-properties-common # step 2: 安装GPG证书 curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add – # Step 3: 写入软件源信息 sudo add-apt-repository “deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable” # Step 4: 更新并安装Docker-CE sudo apt-get -y update sudo apt-get -y install…

在Ubuntu 20.04 LTS 服务器上配置静态IPv6地址

Posted on by

Ubuntu 20.04的网络接口配置默认使用NetPlan,这个新工具取代了以前用于配置Ubuntu网络接口的静态接口(/etc/network/interfaces)文件。现在必须使用/etc/netplan/*.yaml来配置Ubuntu的网络接口。 所以在digitalocean配置静态ip应该修改/etc/netplan/00-cloud-init.yaml文件(这里文件开头的00可能有变化) # This is the network config written by ‘subiquity’ network: ethernets: ens3: addresses: – 0.0.0.0/24 #你的ipv4地址/子网掩码 – xxxx:xxx:xx:x::xxx:xx/64 #你的ipv6地址/前缀 gateway4: 0.0.0.0 #你的ipv4网关地址 gateway6: 0000:000:00:0::0 #你的ipv6网关地址 nameservers: addresses: – 1.1.1.1 #你的DNS1 – 8.8.8.8 #你的DNS2 version: 2 然后输入下面的命令,应用此文件: netplan apply