You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: java/chapters/ch05-compose.adoc
+2-2
Original file line number
Diff line number
Diff line change
@@ -200,7 +200,7 @@ Complete set of REST APIs for this application are explained at https://github.c
200
200
201
201
== Stop Application
202
202
203
-
The application can be stopped using `docker-compose stop` command. This will remove the containers for each service defined in the Compose file, networks defined in the `networks` section of the Compose file, and the default network, if one is used.
203
+
The application can be stopped using `docker-compose down` command. This will remove the containers for each service defined in the Compose file. It will also remove the networks defined in the `networks` section of the Compose file.
204
204
205
205
Remove the application as:
206
206
@@ -218,7 +218,7 @@ Removing javaee_db_1 ... done
218
218
Removing network javaee_default
219
219
----
220
220
221
-
Alternatively, services can be stopped using `docker-compose stop` command:
221
+
Alternatively, only services can be stopped using `docker-compose stop` command:
0 commit comments