1 安装docker的apt源

apt-get install apt-transport-https ca-certificates curl software-properties-common

2
添加docker官方的GPG

root@zhf-linux:/home#
curl -s https://download.docker.com/linux/ubuntu/gpg | sudo apt-key
add -

OK

3
添加docker的源。如果没有docker.list则自己创建一个

root@zhf-linux:/etc/apt/sources.list.d#
bash -c "echo deb https://get.docker.io/ubuntu docker main >
/etc/apt/sources.list.d/docker.list"

4
安装docker

apt
install docker.io

5
查看docker的版本:

root@zhf-linux:/var/lib/docker#
docker version

Client:

Version:
1.13.1

API
version: 1.26

Go
version: go1.6.2

Git
commit: 092cba3

Built:
Thu Sep 7 17:23:05 2017

OS/Arch:
linux/386

Server:

Version:
1.13.1

API
version: 1.26 (minimum version 1.12)

Go
version: go1.6.2

Git
commit: 092cba3

Built:
Thu Sep 7 17:23:05 2017

OS/Arch:
linux/386

Experimental:
false

到这里docker整个就安装完了,我们来看下如何来启动一个镜像

1
通过docker
run命令来启动一个httpd的镜像。如果没有发现httpd镜像会从docker
hub下载镜像。下载完成后,镜像httpd被保存到本地

docker
run -d -p 80:80 httpd

2
docker images可以看到已经下载到本地

root@zhf-linux:/home/zhf/zhf/c_prj/make_function#
docker images

REPOSITORY
TAG IMAGE ID CREATED
SIZE

httpd
latest 7659d5a9a057 2 weeks ago
189 MB

3
docker ps显示容器正在运行

root@zhf-linux:/home/zhf/zhf/c_prj/make_function#
docker ps

CONTAINER
ID IMAGE COMMAND CREATED
STATUS PORTS NAMES

39ae70ca12b2
httpd "httpd-foreground" 6 minutes
ago Up 6 minutes 0.0.0.0:80->80/tcp
compassionate_bohr

接下来看下如何下载一个镜像。通过docker
pull下载。docker
pull会从Docker
Hub进行下载。

root@zhf-linux:/home/zhf/zhf/c_prj/make_function#
docker pull hello-world

Using
default tag: latest

latest:
Pulling from library/hello-world

cf7dde121f94:
Pull complete

Digest:
sha256:0e06ef5e1945a718b02a8c319e15bae44f47039005530bc617a5d071190ed3fc

Status:
Downloaded newer image for hello-world:latest

通过docker
images看到这个镜像只有600多K

root@zhf-linux:/home/zhf/zhf/c_prj/make_function#
docker images hello-world

REPOSITORY
TAG IMAGE ID CREATED
SIZE

hello-world
latest abd130ec0722 3 months ago
665 kB

通过docker
run hello-world来执行。结果如下:

root@zhf-linux:/home/zhf/zhf/c_prj/make_function#
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.

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://cloud.docker.com/

For
more examples and ideas, visit:

https://docs.docker.com/engine/userguide/

下载的docker镜像默认存储路径是/var/lib/docker
.具体的镜像文件就在containers文件夹中

root@zhf-linux:/var/lib/docker#
ls -al

total
44

drwx--x--x
11 root root 4096 Oct 30 22:28 .

drwxr-xr-x
79 root root 4096 Dec 11 21:08 ..

drwx------
5 root root 4096 Oct 30 22:28 aufs

drwx------
8 root root 4096 Dec 19 20:59 containers

drwx------
3 root root 4096 Oct 30 22:28 image

drwxr-x---
3 root root 4096 Oct 30 22:28 network

drwx------
4 root root 4096 Oct 30 22:28 plugins

drwx------
2 root root 4096 Oct 30 22:28 swarm

drwx------
2 root root 4096 Dec 19 20:50 tmp

drwx------
2 root root 4096 Oct 30 22:28 trust

drwx------
2 root root 4096 Oct 30 22:28 volumes

Dockerfile是镜像的描述文件,定义了如何构建Docker镜像。Dockerfile需要到docker网站去查看:

https://hub.docker.com/

查看方法如下:

1 首先在网站上注册一个docker账号

2 在上面的搜索栏中输入hello-world

3 得到仓库中所有关于hello world的镜像,第一个就是我们下载的镜像

4 点击进入后,会发现如下的dockerfile链接

5 点击进入后跳转到github上的链接,可以看到hello-world的dockerfile写法

只有短短三条指令。

      1. FROM scratch
        此镜像是从白手起家,从
        0
        开始构建。

      2. COPY
        hello /
        将文件“hello”复制到镜像的根目录。

      3. CMD
        ["/hello"]
        容器启动时,执行
        /hello

镜像 hello-world 中就只有一个可执行文件 “hello”,其功能就是打印出 “Hello from Docker ......” 等信息。

/hello 就是文件系统的全部内容,连最基本的 /bin,/usr, /lib, /dev 都没有。 而/hello是根据hello.c编译而来的。可以点进去看下hello.c的内容,其实就是打印我们刚才执行docker run hello-world的内容。

docker: docker安装和镜像下载的更多相关文章

  1. 在Ubuntu18.04的Docker中安装Oracle镜像及简单使用

    一.软件环境: 1.OS:Ubuntu 18.04 2.已安装了Docker 二.安装Oracle镜像的过程 1.切换到root账号下,如果是普通账号,下面操作指令前面加sudo 2.搜索oracle ...

  2. Docker的安装和镜像管理并利用Docker容器实现nginx的负载均衡、动静分离

    Docker的安装 一.Docker的概念 Docker 是一个开源的应用容器引擎,让开发者可以打包他们的应用以及依赖包到一个可移植的容器中,然后发布到任何流行的 Linux 机器上,也可以实现虚拟化 ...

  3. docker 的安装和镜像

    一.docker的 安装 : 第一种: yum -y install docker systemctl start docker.service systemctl status docker 第二种 ...

  4. docker 私有仓库上传镜像,其他docker服务器从私有镜像下载

    <pre name="code" class="cpp">docker:/data# docker ps CONTAINER ID IMAGE CO ...

  5. docker核心概念(镜像、容器、仓库)及基本操作

    概要 docker是一种linux容器技术.容器有效的将由单个操作系统挂管理的资源划分到孤立的组中,以便更好的在组之间平衡有冲突的资源使用需求.可简单理解为一种沙盒 .每个容器内运行一个应用,不同的容 ...

  6. CentOS7下Docker的安装与使用

    前言 简介 Docker 是一个开源的应用容器引擎,基于 Go 语言,并遵从 Apache2.0 协议开源. Docker 可以让开发者打包他们的应用以及依赖包到一个轻量级.可移植的容器中,然后发布到 ...

  7. docker私服registry管理镜像

    前言 首先试想这样一个场景:当在自己的机器上(docker中)构建了mysql镜像,eureka镜像等等微服务镜像,这些镜像有可能需要放到其他的机器上docker环境中去运行,实行分布式架构部署.但如 ...

  8. CentOS7安装Docker,运行Nginx镜像、Centos镜像

    摘要 总体思路:yum命令直接安装Docker,下载想要的镜像并启动 1.环境,CentOS7 Minimal 64位,Docker必须要64位的系统 2.通过yum命令直接安装,yum instal ...

  9. Docker详细介绍安装与镜像制作和拉取

    一.Docker是什么? 产生背景: 开发和运维之间因为环境不同和导致的矛盾(不同的操作系统.软件环境.应用配置等)DevOps 代码.系统.环境.配置等封装成镜像Image--->运维: 集群 ...

随机推荐

  1. Java 界面编程【03】事件监听

    当你把界面都设计好了,总需要添加相应的执行动作给组件,在JAVA中有相应的时间处理机制,叫做“监听器”,给组件添加相应执行动作的过程叫做“注册”,其中的“监听器”是一个接口,里面包含了相应的执行函数, ...

  2. HDU 4912 Paths on the tree(LCA+贪心)

    题目链接 Paths on the tree 来源  2014 多校联合训练第5场 Problem B 题意就是给出m条树上的路径,让你求出可以同时选择的互不相交的路径最大数目. 我们先求出每一条路径 ...

  3. ubuntu下某些文件目录

    1.#include <stdio.h> 2.#include <stdlib.h> stdio.h和stdlib.h的路径:/usr/include

  4. ELK之收集Java日志、通过TCP收集日志

    1.Java日志收集 使用codec的multiline插件实现多行匹配,这是一个可以将多行进行合并的插件,而且可以使用what指定将匹配到的行与前面的行合并还是和后面的行合并. 语法示例: inpu ...

  5. UVALive - 3700 Interesting Yang Hui Triangle

    题目大意就是求一下 杨辉三角的第N行中不能被P整除的有多少个. 直接卢卡斯定理一下就行啦. #include<bits/stdc++.h> #define ll long long usi ...

  6. Cocos2d-X中Menu的综合运用

    今天将曾经写的代码和项目集成到了一个菜单中,能够通过菜单切换到曾经做的项目 程序的project文件夹 主要代码分析: LessonMenu.h中实现创建菜单,遍历菜单通过菜单切换到各个项目 #ifn ...

  7. 如何让你的服务屏蔽Shodan扫描

    1. 前言 在互联网中,充斥着各种各样的网络设备,shodan等搜索引擎提供给了我们一个接口,让我们可以在输入一些过滤条件就可以检索出网络中相关的设备. 对于我们的一些可能有脆弱性或者比较隐私的服务, ...

  8. 网页Tab控件

    网页Tab控件 找到:http://www.open-open.com/ajax/2_Tabs.htm 页面,查看了若干Tab控件, 找到了:http://www.open-open.com/ajax ...

  9. 怎样用命令行管理SharePoint Feature?

    普通情况下对IT管理者来说.在SharePoint Farm中维护Feature,更喜欢使用命令行实现,这样能够省去登录到详细网站的操作. 比方IT接到end user的一个需求,要开启Site Co ...

  10. [Bash] Understand and Use Functions in Bash

    n this lesson, we'll go over how bash functions work. Bash functions work like mini bash scripts--yo ...