安装Docker-Ce

  1. Docker_ce的官网安装教程 https://docs.docker.com/install/linux/docker-ce/ubuntu/  
  2. sudo apt-get update  
  3. sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common  
  4.   
  5. curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -  
  6.   
  7. sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu    $(lsb_release -cs)    stable"  
  8.   
  9. sudo apt-get update  
  10.   
  11. sudo apt-get install docker-ce  
  12.   
  13. 安装特定版本的docker-ce:  
  14.   
  15. $ apt-cache madison docker-ce  
  16.   
  17.   docker-ce | 5:18.09.1~3-0~ubuntu-xenial | https://download.docker.com/linux/ubuntu  xenial/stable amd64 Packages  
  18.   
  19.   docker-ce | 5:18.09.0~3-0~ubuntu-xenial | https://download.docker.com/linux/ubuntu  xenial/stable amd64 Packages  
  20.   
  21.   docker-ce | 18.06.1~ce~3-0~ubuntu       | https://download.docker.com/linux/ubuntu  xenial/stable amd64 Packages  
  22.   
  23.   docker-ce | 18.06.0~ce~3-0~ubuntu       | https://download.docker.com/linux/ubuntu  xenial/stable amd64 Packages  
  24.   
  25.   ...  
  26.   
  27. for example, 5:18.09.1~3-0~ubuntu-xenial.  
  28.   
  29. $ sudo apt-get install docker-ce=<VERSION_STRING>  
  30.   
  31. 验证安装是否正确  
  32.   
  33. $ sudo docker run hello-world  
  34. docker是临时的,不可以保存数据库,不能开多进程  
  35.   
  36. 参考的内容:使用 Docker 容器应该避免的 10 个事情  
  37.                       https://segmentfault.com/a/1190000015053704?utm_source=channel-hottest  
  38. ————————————————  
  39. 版权声明:本文为CSDN博主「shiheyingzhe」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。  
  40. 原文链接:https://blog.csdn.net/shiheyingzhe/article/details/86667906  

上一篇:在做TLS/SSL时报错


下一篇:震惊 Python打包exe 存在代码泄露!