From 8a617fdbc76a464b07e4efdc5e1c90a8c344a44c Mon Sep 17 00:00:00 2001 From: mkrupczak3 Date: Wed, 9 May 2018 15:04:09 -0400 Subject: [PATCH] change "alpine telnet" to "busybox telnet" Newer versions of alpine may not include 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 b0d3ad5b..5e946571 100644 --- a/slides/intro/Working_With_Volumes.md +++ b/slides/intro/Working_With_Volumes.md @@ -263,7 +263,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 busybox telnet redis 6379 ``` Issue the following commands: @@ -302,7 +302,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 busybox telnet redis 6379 ``` Issue a few commands.