From 76225dc0e17df8e456fc53a1756036eb3db94f98 Mon Sep 17 00:00:00 2001 From: Kristof Buts Date: Wed, 19 Nov 2025 12:38:59 +0100 Subject: [PATCH] Update command for Docker Compose cleanup The docs state the command to clean up resources when using Docker Compose wrongly: `docker-compose-env-down` instead of `docker-compose-down-env` --- src/frontend/src/content/docs/get-started/deploy-first-app.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/content/docs/get-started/deploy-first-app.mdx b/src/frontend/src/content/docs/get-started/deploy-first-app.mdx index 7af9e252a..0c6da8dbe 100644 --- a/src/frontend/src/content/docs/get-started/deploy-first-app.mdx +++ b/src/frontend/src/content/docs/get-started/deploy-first-app.mdx @@ -975,7 +975,7 @@ After deploying your application, it's important to clean up resources to avoid To clean up resources after deploying with Docker Compose, you can stop and remove the running containers using the following command: ```bash title="Aspire CLI - Stop and remove containers" - aspire do docker-compose-env-down + aspire do docker-compose-down-env ```