diff --git a/slides/intro/Cmd_And_Entrypoint.md b/slides/intro/Cmd_And_Entrypoint.md index be6d04be..5e14615e 100644 --- a/slides/intro/Cmd_And_Entrypoint.md +++ b/slides/intro/Cmd_And_Entrypoint.md @@ -64,6 +64,7 @@ Let's build it: $ docker build -t figlet . ... Successfully built 042dff3b4a8d +Successfully tagged figlet:latest ``` And run it: @@ -165,6 +166,7 @@ Let's build it: $ docker build -t figlet . ... Successfully built 36f588918d73 +Successfully tagged figlet:latest ``` And run it: @@ -223,6 +225,7 @@ Let's build it: $ docker build -t figlet . ... Successfully built 6e0b6a048a07 +Successfully tagged figlet:latest ``` Run it without parameters: diff --git a/slides/intro/Training_Environment.md b/slides/intro/Training_Environment.md index ba3397d5..82500e11 100644 --- a/slides/intro/Training_Environment.md +++ b/slides/intro/Training_Environment.md @@ -86,21 +86,24 @@ Once logged in, make sure that you can run a basic Docker command: ```bash $ docker version Client: - Version: 17.09.0-ce - API version: 1.32 - Go version: go1.8.3 - Git commit: afdb6d4 - Built: Tue Sep 26 22:40:09 2017 - OS/Arch: darwin/amd64 + Version: 18.03.0-ce + API version: 1.37 + Go version: go1.9.4 + Git commit: 0520e24 + Built: Wed Mar 21 23:10:06 2018 + OS/Arch: linux/amd64 + Experimental: false + Orchestrator: swarm Server: - Version: 17.09.0-ce - API version: 1.32 (minimum version 1.12) - Go version: go1.8.3 - Git commit: afdb6d4 - Built: Tue Sep 26 22:45:38 2017 - OS/Arch: linux/amd64 - Experimental: true + Engine: + Version: 18.03.0-ce + API version: 1.37 (minimum version 1.12) + Go version: go1.9.4 + Git commit: 0520e24 + Built: Wed Mar 21 23:08:35 2018 + OS/Arch: linux/amd64 + Experimental: false ``` ]