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

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

docker删除映像

A image is a template for a container.

映像是容器模板

Everything starts from a Docker image.

一切都从Docker映像开始。

When you tell Docker to create a container from an image using docker run, it will perform its magic (create the file system, initialize the dependencies, and more) and then the container will be created.

当您告诉Docker使用docker run从映像创建容器时,它将执行其魔术作用(创建文件系统,初始化依赖关系等),然后将创建容器。

Images are built from a Dockerfile using the docker build command, and they can be stored locally, or published in a Docker registry like Docker Hub, where you can store public and private images.

镜像是使用docker docker build命令从Dockerfile docker build ,它们可以存储在本地,也可以发布在Docker Hub之类的Docker注册表中,您可以在其中存储公共和私有图像。

If you visit you will see a lot of images you can freely use without having to create your own images.

如果您访问您将看到很多可以自由使用的图像,而无需创建自己的图像。

Often times those images are official and made by the development teams behind a specific technology.

通常,这些图像是官方的,并由特定技术背后的开发团队制作。

For example this is the official Node.js Docker Image: .

例如,这是官方的Node.js Docker映像: : 。

We’ll talk more about how to use images and containers soon.

我们将很快讨论更多有关如何使用图像和容器的信息。

翻译自:

docker删除映像

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

你可能感兴趣的文章
Hive Beeline使用
查看>>
Centos6安装图形界面(hdp不需要,hdp直接从github上下载数据即可)
查看>>
CentOS7 中把yum源更换成163源
查看>>
关于yum Error: Cannot retrieve repository metadata (repomd.xml) for repository:xxxxxx.
查看>>
2020-11-18
查看>>
Docker面试题(二)
查看>>
【NOI 2018】归程(Kruskal重构树)
查看>>
注册用户
查看>>
TZC Intercommunication System
查看>>
HDU 4571 SPFA+DP
查看>>
centos 创建以日期为名的文件夹
查看>>
Java Timer触发定时器
查看>>
Page Object设计模式
查看>>
程序的基础知识
查看>>
在VIM中使用GDB调试 – 使用vimgdb
查看>>
python爬虫---从零开始(五)pyQuery库
查看>>
POJ2236(KB5-A)
查看>>
Centos MySQL数据库迁移详细步骤
查看>>
2初出茅庐--初级篇2.1
查看>>
新建 WinCE7.0 下的 Silverlight 工程
查看>>