1 1  sudo apt-get update
 2 
 3 2  sudo apt-get install \
 4     apt-transport-https \
 5     ca-certificates \
 6     curl \
 7     software-properties-common
 8 
 9 3 curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
10 
11 4 sudo add-apt-repository \
12    "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
13    bionic \
14    edge"
15 
16 5 sudo apt-get update
17 
18 6 sudo apt-get install docker-ce

 

相关文章:

  • 2021-07-05
  • 2021-12-17
  • 2021-09-27
  • 2022-12-23
  • 2022-12-23
  • 2021-09-28
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-06-11
  • 2022-12-23
  • 2022-12-23
  • 2021-06-28
  • 2021-10-11
  • 2021-05-15
  • 2022-12-23
相关资源
相似解决方案