Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ Before you push your changes and open a pull request, we recommend that you
test your site locally first. Local tests check for broken links, incorrectly
formatted markup, and other things. To run the tests:

```console
$ docker buildx bake validate
```
```console
$ docker buildx bake validate
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like it still copies the '$', but it does that for all the commands on that page 🤔
Probs a github issue rather than us

```

If this command doesn't result in any errors, you're good to go!

Expand Down
8 changes: 7 additions & 1 deletion content/get-started/introduction/develop-with-containers.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,13 @@ The greeting at the top of the page is populated by an API call at `/api/greetin
};
```

3. If you haven't done so yet, save the file. If you refresh your browser, you should see a new greeting. If you keep refreshing, you should see all of the messages appear.
3. Save the file if you haven't done so yet, then run the following command again:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

With docker compose watch the idea is that you don't have to re-enter the command as it's purpose is to automatically update and preview your running Compose services as you edit and save your code. So this shouldn't be necessary.

SO! It looks like you've found a bug. I'll take this to the Compose team to figure out what's going on.


```console
$ docker compose watch
```

If you refresh your browser, you should see a new greeting. If you keep refreshing, you should see all of the messages appear.

![Screenshot of the to-do app with a new greeting](images/develop-app-with-greetings.webp)

Expand Down