This commit is contained in:
Arun Gupta 2017-09-21 20:05:04 -07:00
Родитель a1093057be
Коммит b9a8a4de4e
1 изменённых файлов: 12 добавлений и 12 удалений

Просмотреть файл

@ -6,7 +6,7 @@
*PURPOSE*: This chapter introduces the basic terminology of Docker.
[quote, docs.docker.com/]
Docker is a platform for developers and sysadmins to develop, ship, and run applications. Docker lets you quickly assemble applications from components and eliminates the friction that can come when shipping code. Docker lets you get your code tested and deployed into production as fast as possible.
Docker is a platform for developers and sysadmins to build, ship, and run applications. Docker lets you quickly assemble applications from components and eliminates the friction that can come when shipping code. Docker lets you get your code tested and deployed into production as fast as possible.
Docker simplifies software delivery by making it easy to build and share images that contain your applications entire environment, or _application operating system_.
@ -68,7 +68,7 @@ Check if your client is working using the following command:
It shows the output:
Docker version 1.13.0, build 49bf474
Docker version 17.09.0-ce-rc2, build 363a3e7
NOTE: The exact version may differ based upon how recently the installation was performed.
@ -76,19 +76,19 @@ The exact version of Client and Server can be seen using `docker version` comman
```
Client:
Version: 1.13.0
API version: 1.25
Go version: go1.7.3
Git commit: 49bf474
Built: Wed Jan 18 16:20:26 2017
Version: 17.09.0-ce-rc2
API version: 1.32
Go version: go1.8.3
Git commit: 363a3e7
Built: Thu Sep 14 01:52:38 2017
OS/Arch: darwin/amd64
Server:
Version: 1.13.0
API version: 1.25 (minimum version 1.12)
Go version: go1.7.3
Git commit: 49bf474
Built: Wed Jan 18 16:20:26 2017
Version: 17.09.0-ce-rc2
API version: 1.32 (minimum version 1.12)
Go version: go1.8.3
Git commit: 363a3e7
Built: Thu Sep 14 01:58:47 2017
OS/Arch: linux/amd64
Experimental: true
```