File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ So, let's do it!
66
66
running `yarn install` to install _all_ dependencies and then running `yarn run dev`. If we look in the `package.json`,
67
67
we'll see that the `dev` script is starting `nodemon`.
68
68
69
- 3. You can watch the logs using `docker logs -f <container-id> `. You'll know you're ready to go when you see this:
69
+ 3. You can watch the logs using `docker logs`. You'll know you're ready to go when you see this:
70
70
71
71
```console
72
72
$ docker logs -f <container-id>
@@ -96,7 +96,11 @@ So, let's do it!
96
96
{: .text-center }
97
97
98
98
6. Feel free to make any other changes you'd like to make. When you're done, stop the container and build your new image
99
- using `docker build -t getting-started .`.
99
+ using:
100
+
101
+ ```console
102
+ $ docker build -t getting-started .
103
+ ```
100
104
101
105
Using bind mounts is _very_ common for local development setups. The advantage is that the dev machine doesn't need to have
102
106
all of the build tools and environments installed. With a single `docker run` command, the dev environment is pulled and ready
You can’t perform that action at this time.
0 commit comments