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: spring-boot-project/spring-boot-docker-compose/src/main/java/org/springframework/boot/docker/compose/core/DockerCompose.java
+11-11
Original file line number
Diff line number
Diff line change
@@ -33,35 +33,35 @@
33
33
publicinterfaceDockerCompose {
34
34
35
35
/**
36
-
* Timeout duration used to request a forced shutdown.
36
+
* Timeout duration used to request a forced stop.
37
37
*/
38
-
DurationFORCE_SHUTDOWN = Duration.ZERO;
38
+
DurationFORCE_STOP = Duration.ZERO;
39
39
40
40
/**
41
-
* Run {@code docker compose up} to startup services. Waits until all contains are
42
-
* started and healthy.
41
+
* Run {@code docker compose up} to create and start services. Waits until all
42
+
* contains are started and healthy.
43
43
* @param logLevel the log level used to report progress
44
44
*/
45
45
voidup(LogLevellogLevel);
46
46
47
47
/**
48
-
* Run {@code docker compose down} to shut down any running services.
49
-
* @param timeout the amount of time to wait or {@link #FORCE_SHUTDOWN} to shut down
50
-
* without waiting.
48
+
* Run {@code docker compose down} to stop and remove any running services.
49
+
* @param timeout the amount of time to wait or {@link #FORCE_STOP} to stop without
50
+
* waiting.
51
51
*/
52
52
voiddown(Durationtimeout);
53
53
54
54
/**
55
-
* Run {@code docker compose start} to startup services. Waits until all contains are
55
+
* Run {@code docker compose start} to start services. Waits until all containers are
56
56
* started and healthy.
57
57
* @param logLevel the log level used to report progress
58
58
*/
59
59
voidstart(LogLevellogLevel);
60
60
61
61
/**
62
-
* Run {@code docker compose stop} to shut down any running services.
63
-
* @param timeout the amount of time to wait or {@link #FORCE_SHUTDOWN} to shut down
64
-
* without waiting.
62
+
* Run {@code docker compose stop} to stop any running services.
63
+
* @param timeout the amount of time to wait or {@link #FORCE_STOP} to stop without
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-docker-compose/src/main/java/org/springframework/boot/docker/compose/lifecycle/DockerComposeLifecycleManager.java
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-docker-compose/src/main/java/org/springframework/boot/docker/compose/lifecycle/DockerComposeListener.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ public void onApplicationEvent(ApplicationPreparedEvent event) {
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-docker-compose/src/main/java/org/springframework/boot/docker/compose/lifecycle/DockerComposeProperties.java
+18-18
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@
26
26
importorg.springframework.boot.logging.LogLevel;
27
27
28
28
/**
29
-
* Configuration properties for the 'docker compose'.
29
+
* Configuration properties for Docker Compose.
30
30
*
31
31
* @author Moritz Halbritter
32
32
* @author Andy Wilkinson
@@ -61,12 +61,12 @@ public class DockerComposeProperties {
61
61
/**
62
62
* Start configuration.
63
63
*/
64
-
privatefinalStartupstartup = newStartup();
64
+
privatefinalStartstart = newStart();
65
65
66
66
/**
67
67
* Stop configuration.
68
68
*/
69
-
privatefinalShutdownshutdown = newShutdown();
69
+
privatefinalStopstop = newStop();
70
70
71
71
/**
72
72
* Profiles configuration.
@@ -107,12 +107,12 @@ public void setHost(String host) {
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-docker-compose/src/main/java/org/springframework/boot/docker/compose/lifecycle/DockerComposeServicesReadyEvent.java
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-docker-compose/src/main/java/org/springframework/boot/docker/compose/lifecycle/DockerComposeSkipCheck.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@
24
24
importorg.springframework.util.ClassUtils;
25
25
26
26
/**
27
-
* Checks if docker compose support should be skipped.
27
+
* Checks if Docker Compose support should be skipped.
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-docker-compose/src/main/java/org/springframework/boot/docker/compose/lifecycle/LifecycleManagement.java
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-docker-compose/src/main/java/org/springframework/boot/docker/compose/lifecycle/StartCommand.java
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-docker-compose/src/main/java/org/springframework/boot/docker/compose/lifecycle/StopCommand.java
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-docker-compose/src/main/java/org/springframework/boot/docker/compose/lifecycle/package-info.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,6 @@
15
15
*/
16
16
17
17
/**
18
-
* Lifecycle management for docker compose with the context of a Spring application.
18
+
* Lifecycle management for Docker Compose with the context of a Spring application.
0 commit comments