博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Docker容器简介
阅读量:2506 次
发布时间:2019-05-11

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

A Docker Container is an environment that contains an application, or multiple applications, and all the libraries, other applications and tooling they need to run.

Docker容器是一个环境,其中包含一个或多个应用程序,以及它们需要运行的所有库,其他应用程序和工具。

The application is encapsulated with its dependencies in a container.

该应用程序及其相关性封装在容器中。

You can take a and create a container from it on a newly bought machine with Docker installed, and your application will work without additional work or dependencies.

您可以在安装了的新购买的计算机上获取并从中创建一个容器,您的应用程序可以正常工作,而无需进行其他工作或依赖。

Containers are fully isolated from the computer they run on, called host machine, and you have ways to let them communicate with it, and share resources.

容器与运行它们的计算机(称为主机)完全隔离,您可以通过各种方法使容器与其通信并共享资源。

The goal is not to completely isolate an environment, like it would happen with a virtual machine, but instead the goal is to make an application as portable as possible.

目标不是像虚拟机那样完全隔离环境,而是目标是使应用程序尽可能地可移植。

Applications running in a Docker container are very fast, and you can run many containers at once.

在Docker容器中运行的应用程序非常快,您可以一次运行多个容器。

When talking about Docker Images, I mentioned Docker Images are built. Docker Containers are run, using docker run.

在谈论Docker镜像时,我提到了Docker镜像是内置的。 使用docker run Docker容器

翻译自:

转载地址:http://vxmgb.baihongyu.com/

你可能感兴趣的文章
学生信息管理系统应用ios源码iPad版
查看>>
Android中使用http协议访问网络
查看>>
ASP.NET Core 菜鸟之路:从Startup.cs说起
查看>>
vs win32 & MFC 指针默认位置
查看>>
Join 与 CountDownLatch 之间的区别
查看>>
js存cookie
查看>>
vc6下dll调试
查看>>
Ubuntu apt常用命令
查看>>
struts2 配置(部分)
查看>>
python代码迷之错误(ModuleNotFoundError: No module named 'caffe.proto')
查看>>
nodejs adm-zip 解压文件 中文文件名乱码 问题解决
查看>>
阿里程序员:我年薪260万+3000万期权,协和医生一辈子都赚不到
查看>>
MapReduce-文本输入
查看>>
在Linux中简单实现回收子进程
查看>>
<Bootstrap> 学习笔记六. 栅格系统使用案例
查看>>
我的第一个python web开发框架(39)——后台接口权限访问控制处理
查看>>
electron监听系统托盘,electron是否最小化到系统托盘
查看>>
源码学习
查看>>
[DIOCP3-说明书] 关于DEMO的编译
查看>>
Linux系统下部署Tomcat服务器
查看>>