Browse code

Update docs to reflect working directory name change.

Signed-off-by: Eric Soderstrom <ericsoderstrom@gmail.com>

Eric Soderstrom authored on 2017/11/27 06:12:16
Showing 1 changed files
... ...
@@ -132,14 +132,14 @@ can take over 15 minutes to complete.
132 132
    ```none
133 133
    Successfully built 3d872560918e
134 134
    docker run --rm -i --privileged -e BUILDFLAGS -e KEEPBUNDLE -e DOCKER_BUILD_GOGC -e DOCKER_BUILD_PKGS -e DOCKER_CLIENTONLY -e DOCKER_DEBUG -e DOCKER_EXPERIMENTAL -e DOCKER_GITCOMMIT -e DOCKER_GRAPHDRIVER=devicemapper -e DOCKER_INCREMENTAL_BINARY -e DOCKER_REMAP_ROOT -e DOCKER_STORAGE_OPTS -e DOCKER_USERLANDPROXY -e TESTDIRS -e TESTFLAGS -e TIMEOUT -v "home/ubuntu/repos/docker/bundles:/go/src/github.com/moby/moby/bundles" -t "docker-dev:dry-run-test" bash
135
-   root@f31fa223770f:/go/src/github.com/moby/moby#
135
+   root@f31fa223770f:/go/src/github.com/docker/docker#
136 136
    ```
137 137
 
138 138
    At this point, your prompt reflects the container's BASH shell.
139 139
 
140 140
 5. List the contents of the current directory (`/go/src/github.com/moby/moby`).
141 141
 
142
-   You should see the image's source from the  `/go/src/github.com/moby/moby`
142
+   You should see the image's source from the  `/go/src/github.com/docker/docker`
143 143
    directory.
144 144
 
145 145
    ![List example](images/list_example.png)
... ...
@@ -147,7 +147,7 @@ can take over 15 minutes to complete.
147 147
 6. Make a `dockerd` binary.
148 148
 
149 149
    ```none
150
-   root@a8b2885ab900:/go/src/github.com/moby/moby# hack/make.sh binary
150
+   root@a8b2885ab900:/go/src/github.com/docker/docker# hack/make.sh binary
151 151
    Removing bundles/
152 152
 
153 153
    ---> Making bundle: binary (in bundles/binary)
... ...
@@ -161,7 +161,7 @@ can take over 15 minutes to complete.
161 161
    `/usr/local/bin/` directory.
162 162
 
163 163
    ```none
164
-   root@a8b2885ab900:/go/src/github.com/moby/moby# make install
164
+   root@a8b2885ab900:/go/src/github.com/docker/docker# make install
165 165
    ```
166 166
 
167 167
 8. Start the Engine daemon running in the background.
... ...
@@ -190,7 +190,7 @@ can take over 15 minutes to complete.
190 190
 9. Inside your container, check your Docker version.
191 191
 
192 192
    ```none
193
-   root@5f8630b873fe:/go/src/github.com/moby/moby# docker --version
193
+   root@5f8630b873fe:/go/src/github.com/docker/docker# docker --version
194 194
    Docker version 1.12.0-dev, build 6e728fb
195 195
    ```
196 196
 
... ...
@@ -201,13 +201,13 @@ can take over 15 minutes to complete.
201 201
 10. Run the `hello-world` image.
202 202
 
203 203
     ```none
204
-    root@5f8630b873fe:/go/src/github.com/moby/moby# docker run hello-world
204
+    root@5f8630b873fe:/go/src/github.com/docker/docker# docker run hello-world
205 205
     ```
206 206
 
207 207
 11. List the image you just downloaded.
208 208
 
209 209
     ```none
210
-    root@5f8630b873fe:/go/src/github.com/moby/moby# docker images
210
+    root@5f8630b873fe:/go/src/github.com/docker/docker# docker images
211 211
 	REPOSITORY   TAG     IMAGE ID      CREATED        SIZE
212 212
 	hello-world  latest  c54a2cc56cbb  3 months ago   1.85 kB
213 213
     ```
... ...
@@ -296,7 +296,7 @@ example, you'll edit the help for the `attach` subcommand.
296 296
 10. To view your change, run the `dockerd --help` command in the docker development container shell.
297 297
 
298 298
    ```bash
299
-   root@b0cb4f22715d:/go/src/github.com/moby/moby# dockerd --help
299
+   root@b0cb4f22715d:/go/src/github.com/docker/docker# dockerd --help
300 300
 
301 301
    Usage:        dockerd COMMAND
302 302