From b587995d42a42abb40821eafa46ea4ab5338bf58 Mon Sep 17 00:00:00 2001 From: sid palas Date: Sun, 12 Feb 2023 19:18:08 -0500 Subject: [PATCH] update docker object readme --- 10-interacting-with-docker-objects/README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/10-interacting-with-docker-objects/README.md b/10-interacting-with-docker-objects/README.md index 716e420..8045c90 100644 --- a/10-interacting-with-docker-objects/README.md +++ b/10-interacting-with-docker-objects/README.md @@ -1,9 +1,15 @@ # Interacting with Containers and Other Docker Objects +Familiarize yourself with the docker command line! + +You should: +1) Use the documentation here: https://docs.docker.com/engine/reference/commandline/cli/ +2) Use the `--help` flag (e.g. `docker build --help`) to get more info about each command. + ## Images 1) ls -2) build +2) build (https://docs.docker.com/engine/reference/commandline/build/) 3) tag 4) pull 5) push @@ -34,3 +40,13 @@ 3) inspect 4) rm 5) prune + +## Networks + +1) ls +2) create +3) inspect +4) connect +5) disconnect +6) rm +7) prune