三木社区

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 671|回复: 0
打印 上一主题 下一主题

使用Dockerfile创建image

[复制链接]

1562

主题

1564

帖子

4904

积分

博士

Rank: 8Rank: 8

积分
4904
跳转到指定楼层
楼主
发表于 2017-9-7 08:56:33 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
docker build 命令 读取Dockerfile 来创建image
创建目录以及Dockerfile
  1. zane@zane-V:~$ mkdir sinatra
  2. zane@zane-V:~$ cd sinatra/
  3. zane@zane-V:~/sinatra$ touch Dockerfile
复制代码
Dockerfile内容
  1. # This is a comment
  2. FROM ubuntu:14.04
  3. MAINTAINER zane zane.zhang@zoom.us
  4. RUN apt-get update && apt-get install -y ruby ruby-dev
  5. RUN gem install sinatra
复制代码
#: 注释
FROM
以哪个image为基础
maintainer
作者
RUN
在基础image上做一些实质性操作

docker build 创建image

  1. zane@zane-V:~/sinatra$ docker build -t zane/sinatra:v1 .
  2. Sending build context to Docker daemon 2.048 kB
  3. Step 1 : FROM ubuntu:14.04
  4. 14.04: Pulling from library/ubuntu

  5. 16da43b30d89: Pulling fs layer
  6. 1840843dafed: Pulling fs layer
  7. 91246eb75b7d: Pulling fs layer
  8. 7faa681b41d7: Waiting
  9. 97b84c64d426: Waiting
复制代码
-t 参数给image名称 zane/sinatra,以及标签 v1
不要忘记 . 命令,它告诉docker build 在本目录寻找调用Dockerfile。

  1. zane@zane-V:~$ docker images
  2. REPOSITORY              TAG                 IMAGE ID            CREATED              SIZE
  3. zane/sinatra            v1                  c0e79450b1a1        About a minute ago   322.4 MB
  4. sinatra                 v2                  7902e96eb014        21 minutes ago       471.2 MB
  5. zane0306/docker-whale   latest              d09756981eeb        31 hours ago         275.1 MB
  6. centos                  latest              67591570dd29        11 days ago          191.8 MB
  7. ubuntu                  latest              104bec311bcd        11 days ago          129 MB
  8. ubuntu                  14.04               3f755ca42730        11 days ago          188 MB
  9. hello-world             latest              c54a2cc56cbb        5 months ago         1.848 kB
  10. docker/whalesay         latest              6b362a9f73eb        19 months ago        247 MB
  11. training/webapp         latest              6fae60ef3446        19 months ago        348.8 MB
  12. training/sinatra        latest              49d952a36c58        2 years ago          447 MB
复制代码


回复

使用道具 举报

Archiver|手机版|小黑屋|三木电子社区 ( 辽ICP备11000133号-4 )

辽公网安备 21021702000620号

GMT+8, 2025-10-19 00:42 , Processed in 0.029248 second(s), 22 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表