From fbb264b980216dea835055aca24c844c3b5fe548 Mon Sep 17 00:00:00 2001 From: Allie Sadler <102604716+aevesdocker@users.noreply.github.com> Date: Wed, 30 Aug 2023 14:36:54 +0100 Subject: [PATCH] add another watch example (#18067) Co-authored-by: Allie Sadler --- content/compose/file-watch.md | 6 +++--- data/toc.yaml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/content/compose/file-watch.md b/content/compose/file-watch.md index 1178274283..d8a26de658 100644 --- a/content/compose/file-watch.md +++ b/content/compose/file-watch.md @@ -7,6 +7,7 @@ title: Automatically update services with file watch in Docker Compose > **Experimental** > > The Compose file watch feature is currently [Experimental](../release-lifecycle.md). +{ .experimental } Use `watch` to automatically update your running Compose services as you edit and save your code. @@ -130,10 +131,9 @@ This pattern can be followed for many languages and frameworks, such as Python w 3. Run `docker compose alpha watch` to start the file watch mode. 4. Edit service source files using your preferred IDE or editor. ->**Tip** +>**Looking for a sample project to test things out?** > -> Looking for a sample project to test things out? Check -out [`dockersamples/avatars`](https://github.com/dockersamples/avatars) for a demonstration of Compose `watch`. +> Check out [`dockersamples/avatars`](https://github.com/dockersamples/avatars), or [build the docs site locally](../contribute/contribute-guide.md#build-and-preview-the-docs-locally) for a demonstration of Compose `watch`. { .tip } ## Feedback diff --git a/data/toc.yaml b/data/toc.yaml index 245f98e144..1808ac2254 100644 --- a/data/toc.yaml +++ b/data/toc.yaml @@ -1826,7 +1826,7 @@ Manuals: - path: /compose/networking/ title: Networking in Compose - path: /compose/file-watch/ - title: Automatically update services with file watch (Experimental) + title: Use file watch (Experimental) - path: /compose/production/ title: Using Compose in production - path: /compose/use-secrets/