草稿 · 2022年5月1日 0

草稿:Linux Doker安装

快捷安装:
  • 方法一
wget -qO- https://get.docker.com/ | bash
  • 方法二
curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh
启动并设置默认开机:
systemctl start docker
systemctl enable docker