博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
docker初步
阅读量:5789 次
发布时间:2019-06-18

本文共 891 字,大约阅读时间需要 2 分钟。

[Note,]由于docker的局限性,docker只能运行在64位的系统中

docker软件应用程序可以重复地运行在任何地方,因为它的容器包含了所有的环境依赖关系

docker有三种方式运行

  • 作为一个守护demo进程来管理你的linux主机上的LXC容器(sudo docker -d)

  • 作为一个命令行的方式来告诉docker进程的程序接口来做什么(docker run ...)

  • 作为一个仓库的客户端让你分享你搭建的环境(docker pull,docker commit)

built and shared in the Docker Hub Registry, a cloud-based collection of applications

Docker Engine consists of two parts: a daemon, a server process that manages all the containers, and a client, which acts as a remote control for the daemon

Docker Hub Registry, a cloud-based collection of application

can find them online at Docker Hub as well through the Docker Engine client command line

Container images can be downloaded easily using docker pull. For images in the Docker Hub Registry, the name you specify is constructed as <username>/<repository>

 

posted on
2014-08-27 21:56 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/ruiy/p/tentative.html

你可能感兴趣的文章
【348天】每日项目总结系列086(2018.01.19)
查看>>
【294天】我爱刷题系列053(2017.11.26)
查看>>
可替换元素和非可替换元素
查看>>
2016/08/25 The Secret Assumption of Agile
查看>>
(Portal 开发读书笔记)Portlet间交互-PortletSession
查看>>
搭建vsftpd服务器,使用匿名账户登入
查看>>
JAVA中循环删除list中元素的方法总结
查看>>
Java虚拟机管理的内存运行时数据区域解释
查看>>
人人都会深度学习之Tensorflow基础快速入门
查看>>
ChPlayer播放器的使用
查看>>
js 经过修改改良的全浏览器支持的软键盘,随机排列
查看>>
Mysql读写分离
查看>>
探寻Interpolator源码,自定义插值器
查看>>
一致性哈希
查看>>
Web日志安全分析工具 v2.0发布
查看>>
JS重载
查看>>
python2和python3同安装在Windows上,切换问题
查看>>
php加速工具xcache的安装与使用(基于LNMP环境)
查看>>
android超链接
查看>>
统计数据库大小
查看>>