第五章 Docker基础命令详解

启动、重启 docker

[root@centos_7_1]:[~]# systemctl start docker  
[root@centos_7_1]:[~]# systemctl restart docker

查看docker的版本:

[root@centos_7_1]:[~]# docker version
Client:
 Version:           18.06.1-ce                  # 客户端版本
 API version:       1.38                        
 Go version:        go1.10.3                    # 开发语言版本
 Git commit:        e68fc7a                     
 Built:             Tue Aug 21 17:23:03 2018
 OS/Arch:           linux/amd64                 # 系统环境
 Experimental:      false

Server:
 Engine:
  Version:          18.06.1-ce                  # 服务端版本
  API version:      1.38 (minimum version 1.12)
  Go version:       go1.10.3                    # 同上
  Git commit:       e68fc7a
  Built:            Tue Aug 21 17:25:29 2018
  OS/Arch:          linux/amd64                 # 同上
  Experimental:     false

查看镜像的详细信息:

docker image inspect alpine:3.8
Containers: 0      # 当前容器的数量
 Running: 0        # 当前运行中的容器数量
 Paused: 0         # 当前暂停状态的容器数量
 Stopped: 0        # 当前已停止工作的容器数量
Images: 0          # 当前主机有多少个镜像
Server Version: 18.06.1-ce          # 服务端版本
Storage Driver: overlay2            # 存储驱动
 Backing Filesystem: xfs            # 文件系统
 Supports d_type: true
 Native Overlay Diff: true
Logging Driver: json-file           # 日志驱动
Cgroup Driver: cgroupfs             # 控制组的驱动
Plugins:                            # 启动的插件
 Volume: local                      # 存储卷:支持本地
 Network: bridge host macvlan null overlay               # 网络:支持桥接网络、宿主机网络、macvlan、不使用网络、叠加网络
 Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog           # 日志
Swarm: inactive                     # 容器编排工具
Runtimes: runc                      # 运行时环境:runc
Default Runtime: runc

# *************** 篇幅有限中间已省略,节选重要参数介绍*************** 

Insecure Registries:                 # 非安全的仓库
 127.0.0.0/8
Registry Mirrors:                    # 镜像加速配置

Docker分类---文章目录:

第一章 初识Docker | 点击此处
第二章 安装Docker以及简单配置 | 点击此处
第三章 Docker容器的生命周期 | 点击此处
第四章 Docker命令汇总 | 点击此处
第五章 Docker基础命令详解 | 点击此处
第六章 Docker---镜像的命令详解 | 点击此处
第七章 Docker---容器的命令详解 | 点击此处
第八章 Docker与Alpine不解之缘 | 点击此处
未完待续

你可能感兴趣的:(第五章 Docker基础命令详解)