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.