From c4deae3906224aa4b7c35a4d65088600e09d5c77 Mon Sep 17 00:00:00 2001 From: Moritz Halbritter Date: Fri, 5 May 2023 10:21:09 +0200 Subject: [PATCH] Document that Spring Boot by default calls 'docker compose stop' --- .../src/docs/asciidoc/features/docker-compose.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/docker-compose.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/docker-compose.adoc index 912cce56c2..2c337ba80d 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/docker-compose.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/docker-compose.adoc @@ -12,7 +12,7 @@ To help with this workflow, the `spring-boot-docker-compose` module can be used. * Search for a `compose.yml` and other common compose filenames in your application directory * Call `docker compose up` with the discovered `compose.yml` * Create service connection beans for each supported container -* Call `docker compose down` when the application is shutdown +* Call `docker compose stop` when the application is shutdown NOTE: The `docker compose` or `docker-compose` CLI application needs to be on your path in order for Spring Boot’s support to work correctly.