docker一键安装脚本

apt-get remove docker docker-engine docker.io

apt-get update

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

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

apt-key fingerprint 0EBFCD88

add-apt-repository \  "deb [arch=amd64] https://download.docker.com/linux/ubuntu \

  $(lsb_release -cs) \

  stable"

apt-get update

apt-get install docker-ce -y

curl -L "https://github.com/docker/compose/releases/download/1.23.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose

chmod +x /usr/local/bin/docker-compose

你可能感兴趣的:(docker一键安装脚本)