From 24292fdbd21e3f1e7e25e78ee75d877c272b0ffb Mon Sep 17 00:00:00 2001 From: lpaglione <682489+lpaglione@users.noreply.github.com> Date: Sun, 10 Nov 2019 14:16:02 -0500 Subject: [PATCH] update commands --- _episodes/01-prep.md | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/_episodes/01-prep.md b/_episodes/01-prep.md index 1a85a6a..f8516e9 100644 --- a/_episodes/01-prep.md +++ b/_episodes/01-prep.md @@ -50,26 +50,16 @@ ssh registryN-private First we'll see what docker nodes are available: -``` shell -docker node ls -``` - -which should result in something that looks like this: - ``` console +docker node ls ID HOSTNAME STATUS AVAILABILITY MANAGER STATUS ENGINE VERSION 8tuwrbfdci97tfn9nqoinic0o * registry1-private.comanage.incommon.training Ready Active Leader 19.03.4 ``` You can also see the list of containers that are available by running the docker ps command. (NOTE, there shouldn't be any Docker containers because we haven't set them up yet. This command will confirm that this is true.) -``` shell +``` console docker ps -``` - -which should result in just showing the headers for the list of containers. It will look something that looks like this - -``` shell CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES ```