Home / Function/ getCommand() — spring-boot Function Reference

getCommand() — spring-boot Function Reference

Architecture documentation for the getCommand() function in DockerCliCommand.java from the spring-boot codebase.

Function java GradlePlugin AotProcessing calls 1 called by 4

Entity Profile

Dependency Diagram

graph TD
  83c48bea_b1b2_6c5b_bae7_559cf39dca1f["getCommand()"]
  14687280_7c02_a000_24b9_0d36f6f97caf["ComposeUp()"]
  14687280_7c02_a000_24b9_0d36f6f97caf -->|calls| 83c48bea_b1b2_6c5b_bae7_559cf39dca1f
  c8545e97_0475_ce33_7245_7b752ad6052c["ComposeDown()"]
  c8545e97_0475_ce33_7245_7b752ad6052c -->|calls| 83c48bea_b1b2_6c5b_bae7_559cf39dca1f
  4cc0c4e6_bec7_4abe_bdd8_d4c8ee32349e["ComposeStart()"]
  4cc0c4e6_bec7_4abe_bdd8_d4c8ee32349e -->|calls| 83c48bea_b1b2_6c5b_bae7_559cf39dca1f
  0040df48_2d9f_2934_c1b0_f8da5f09a062["ComposeStop()"]
  0040df48_2d9f_2934_c1b0_f8da5f09a062 -->|calls| 83c48bea_b1b2_6c5b_bae7_559cf39dca1f
  8119c470_91e1_de90_5914_922fa640a99a["getCommand()"]
  83c48bea_b1b2_6c5b_bae7_559cf39dca1f -->|calls| 8119c470_91e1_de90_5914_922fa640a99a
  style 83c48bea_b1b2_6c5b_bae7_559cf39dca1f fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot-docker-compose/src/main/java/org/springframework/boot/docker/compose/core/DockerCliCommand.java lines 184–192

		private static String[] getCommand(List<String> arguments) {
			List<String> result = new ArrayList<>();
			result.add("up");
			result.add("--no-color");
			result.add("--detach");
			result.add("--wait");
			result.addAll(arguments);
			return result.toArray(String[]::new);
		}

Domain

Subdomains

Calls

Called By

  • ComposeDown()
  • ComposeStart()
  • ComposeStop()
  • ComposeUp()

Frequently Asked Questions

What does getCommand() do?
getCommand() is a function in the spring-boot codebase.
What does getCommand() call?
getCommand() calls 1 function(s): getCommand.
What calls getCommand()?
getCommand() is called by 4 function(s): ComposeDown, ComposeStart, ComposeStop, ComposeUp.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free