Public repo to distribute scripts and config's
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 

9 行
493 B

  1. #/bin/bash
  2. #Install Docker
  3. apt install ca-certificates curl gnupg lsb-release -y
  4. curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
  5. echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
  6. apt update
  7. apt install docker-ce docker-ce-cli containerd.io -y