linux 安装配置docker

安装docker好几次了,这次记录下命令,以后方便直接复制粘贴~

系统

ubuntu18 虚拟机

命令

依次在命令行中输入以下内容

apt-get update

apt-get install -y apt-transport-https ca-certificates software-properties-common curl

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -

apt-key fingerprint 0EBFCD88

add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
bionic \
stable"  //我的系统是ubuntu18.04,对应bionic

apt-get update

apt-get install -y docker-ce //安装最新版的docker

docker version //这句话可以用来检查docker是否安装成功

你可能感兴趣的:(linux 安装配置docker)