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

本文共 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

你可能感兴趣的文章
2013年全国各大著名的IT公司薪资待遇大揭密
查看>>
阵列无法解挂导致VCS双机倒换失败
查看>>
ORACLE中用for in 使用cursor
查看>>
Apache - AH00451
查看>>
批处理
查看>>
vim使用技巧
查看>>
nagios+centreon监控构建
查看>>
oa源码开发过程1
查看>>
bootstrap-data-target触发模态弹出窗元素
查看>>
读Xamarin文档记录
查看>>
PHP 错误处理机制
查看>>
sql*plus 使用技巧
查看>>
3.第一个MyBatis程序_进化
查看>>
学生表 课程表 成绩表 教师表 50个常用sql语句
查看>>
算法分析中最常用的几种排序算法(插入排序、希尔排序、冒泡排序、选择排序、快速排序,归并排序)C 语言版...
查看>>
Redis 3.0 编译安装
查看>>
部署第一个域:Active Directory
查看>>
编程经验-优美的代码也是一种艺术
查看>>
获得ios屏幕上的像素
查看>>
windows下ACS服务器的认证(h3c)【路由器、交换机】
查看>>