Docker :20.10.14
step1:安装依赖
curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add - sudo add-apt-repository "deb [arch=amd64] https://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"
apt install -y docker-compose step7:查看docker状态 sudo systemctl status docker |
Node.js :v16.15.0 Yarn :1.22.18 Npm: 8.5.5
1、nodejs & npm 安装 执行这个脚本会安装node16.x的版本。 脚本名字:install_nodejs.sh vim install_nodejs.sh 添加一下内容 #!/bin/bash # 安装更新Node.js和Npm所需要的软件 echo "update apt packge ..." sudo apt update # 添加NodeSource APT存储库和用于验证软件包的PGP密钥 echo "add NodeSource APT is PGP" sudo apt install apt-transport-https curl ca-certificates software-properties-common echo "add apt-get nodejs16.x and PGP" # 该行命令完成了apt-get存储库的添加并添加了PGP密钥 curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash - echo "install nodejs and npm...." # 安装Node sudo apt-get install -y nodejs 执行命令 sh install_nodejs.sh 查看是否安装成功 node -v && npm -v 2、yarn 安装 npm安装好后可以通过如下命令安装 npm install --global yarn 通过如下命令测试 Yarn 是否安装成功: yarn --version |