当前位置: 首页 > article >正文

Docker image

image 在 Dokcer 里面也称为镜像文件。 它是一个容器的模板,用它我们可以创建很多的容器。 举个例子,我们现在有一个 Nginx 的 image 镜像文件。 利用这个镜像,我们可以创建多个 Nginx 的容器,每一个容器我们都可以把它看作是一台 Nginx 服务器。

Docker 社区共享的 image 文件的网址是:Docker Hub。 我们用 pull 命令可以获取到上面到本地。

Hello Word

现在,我们要获取 hello-world 这个镜像并且运行,作为第一个示例。

// 获取 hello-world 镜像
sudo docker pull hello-world

// 运行 hello-world 镜像
sudo docker run hello-world

// 返回下面这段文字,说明运行成功
Hello from Docker!
This message shows that your installation appears to be working correctly.

To generate this message, Docker took the following steps:
 1. The Docker client contacted the Docker daemon.
 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
    (amd64)
 3. The Docker daemon created a new container from that image which runs the
    executable that produces the output you are currently reading.
 4. The Docker daemon streamed that output to the Docker client, which sent it
    to your terminal.

To try something more ambitious, you can run an Ubuntu container with:
 $ docker run -it ubuntu bash

Share images, automate workflows, and more with a free Docker ID:
 https://hub.docker.com/

For more examples and ideas, visit:
 https://docs.docker.com/get-started/

image 管理

下面是几个 Docker image 常用的管理命令:

// image ls | 列出当前系统的 image 文件
sudo docker image ls

// image inspect [镜像文件名称] | 镜像文件的详情信息
// 返回一个 Json 数据结构,里面是镜像文件的默认配置
sudo docker image inspect nginx

// image rm [镜像文件名称] | 移除镜像文件
sudo docker image rm nginx


http://www.kler.cn/a/501312.html

相关文章:

  • 备战蓝桥杯:树的存储与遍历(dfs和bfs)
  • 深入 Flutter 和 Compose 在 UI 渲染刷新时 Diff 实现对比
  • 44_Lua迭代器
  • MDX语言的函数实现
  • Redis持久化双雄
  • 《跟我学Spring Boot开发》系列文章索引❤(2025.01.09更新)
  • ️ 如何将 Julia 包切换为本地开发版本?以 Reactant 为例
  • OpenCV的对比度受限的自适应直方图均衡化算法
  • kafka原理解析
  • Python的pandas库基础知识(超详细教学)
  • 贪心算法详细讲解(沉淀中)
  • 论文阅读:Jailbreak Open-Sourced Large Language Models via Enforced Decoding
  • elasticsearch中IK分词器
  • maven发包踩坑
  • 【C++】深入理解substr()函数
  • 解锁最新专业版005,内置序列免安装!
  • 腾讯云AI代码助手编程挑战赛-厨房助手之AI大厨
  • 【灵码助力安全2】——利用通义灵码辅助复现未公开漏洞的实践
  • Android车机DIY开发之软件篇(三)编译Automotive OS错误(2)
  • Github上传项目
  • 反弹SHELL不回显带外正反向连接防火墙出入站文件下载
  • 基于DFT与IIR-FIR滤波器的音频分析与噪声处理
  • 服务提供模式:App、API 和 Agent —— 重新定义服务交付方式
  • 4.3.3 最优二叉树+二叉查找树
  • 机器学习之支持向量机SVM及测试
  • WebGIS城市停水及影响范围可视化实践