update docker object readme

This commit is contained in:
sid palas
2023-02-12 19:18:08 -05:00
parent a99a1e94ff
commit b587995d42

View File

@ -1,9 +1,15 @@
# Interacting with Containers and Other Docker Objects # 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 ## Images
1) ls 1) ls
2) build 2) build (https://docs.docker.com/engine/reference/commandline/build/)
3) tag 3) tag
4) pull 4) pull
5) push 5) push
@ -34,3 +40,13 @@
3) inspect 3) inspect
4) rm 4) rm
5) prune 5) prune
## Networks
1) ls
2) create
3) inspect
4) connect
5) disconnect
6) rm
7) prune