From 051dd13c21a36632ef781ab65ab18f07f3311ab7 Mon Sep 17 00:00:00 2001 From: Diego Quintana Date: Thu, 28 Jun 2018 09:26:30 -0400 Subject: [PATCH] Enforce alpine version that includes telnet (#292) * Enforce alpine version that contains telnet alpine 3.7 does not contain `telnet` by default https://github.com/gliderlabs/docker-alpine/issues/397#issuecomment-375415746 * bump fix enforce alpine 3.6 in another slide that mentions `telnet` --- slides/intro/Working_With_Volumes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slides/intro/Working_With_Volumes.md b/slides/intro/Working_With_Volumes.md index 0a6e6514..04c6b8f7 100644 --- a/slides/intro/Working_With_Volumes.md +++ b/slides/intro/Working_With_Volumes.md @@ -259,7 +259,7 @@ $ docker run -d --name redis28 redis:2.8 Connect to the Redis container and set some data. ```bash -$ docker run -ti --link redis28:redis alpine telnet redis 6379 +$ docker run -ti --link redis28:redis alpine:3.6 telnet redis 6379 ``` Issue the following commands: @@ -298,7 +298,7 @@ class: extra-details Connect to the Redis container and see our data. ```bash -docker run -ti --link redis30:redis alpine telnet redis 6379 +docker run -ti --link redis30:redis alpine:3.6 telnet redis 6379 ``` Issue a few commands.