1 parent a99a1e9 commit b587995Copy full SHA for b587995
1 file changed
10-interacting-with-docker-objects/README.md
@@ -1,9 +1,15 @@
1
# Interacting with Containers and Other Docker Objects
2
3
+Familiarize yourself with the docker command line!
4
+
5
+You should:
6
+1) Use the documentation here: https://docs.docker.com/engine/reference/commandline/cli/
7
+2) Use the `--help` flag (e.g. `docker build --help`) to get more info about each command.
8
9
## Images
10
11
1) ls
-2) build
12
+2) build (https://docs.docker.com/engine/reference/commandline/build/)
13
3) tag
14
4) pull
15
5) push
@@ -34,3 +40,13 @@
34
40
3) inspect
35
41
4) rm
36
42
5) prune
43
44
+## Networks
45
46
+1) ls
47
+2) create
48
+3) inspect
49
+4) connect
50
+5) disconnect
51
+6) rm
52
+7) prune
0 commit comments