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

DefaultRunningService() — spring-boot Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  69f8caf2_0694_a0be_499f_728222cd823e["DefaultRunningService()"]
  0d12ad1d_8f9d_e7c6_43bc_713ed41cbfe5["name()"]
  69f8caf2_0694_a0be_499f_728222cd823e -->|calls| 0d12ad1d_8f9d_e7c6_43bc_713ed41cbfe5
  01d45631_b216_b756_cf66_4e34d4fb34a2["image()"]
  69f8caf2_0694_a0be_499f_728222cd823e -->|calls| 01d45631_b216_b756_cf66_4e34d4fb34a2
  51119cd6_0a18_fbea_a93e_bc57198c68bd["env()"]
  69f8caf2_0694_a0be_499f_728222cd823e -->|calls| 51119cd6_0a18_fbea_a93e_bc57198c68bd
  121a68dd_433d_26a5_f110_11e9b2f75b22["labels()"]
  69f8caf2_0694_a0be_499f_728222cd823e -->|calls| 121a68dd_433d_26a5_f110_11e9b2f75b22
  style 69f8caf2_0694_a0be_499f_728222cd823e fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot-docker-compose/src/main/java/org/springframework/boot/docker/compose/core/DefaultRunningService.java lines 52–63

	DefaultRunningService(DockerHost host, @Nullable DockerComposeFile composeFile,
			DockerCliComposePsResponse composePsResponse, DockerCliInspectResponse inspectResponse) {
		this.origin = new DockerComposeOrigin(composeFile, composePsResponse.name());
		this.name = composePsResponse.name();
		this.image = ImageReference
			.of((composePsResponse.image() != null) ? composePsResponse.image() : inspectResponse.config().image());
		this.host = host;
		this.ports = new DefaultConnectionPorts(inspectResponse);
		this.env = new DockerEnv(inspectResponse.config().env());
		this.labels = Collections.unmodifiableMap(inspectResponse.config().labels());
		this.composeFile = composeFile;
	}

Domain

Subdomains

Calls

  • env()
  • image()
  • labels()
  • name()

Frequently Asked Questions

What does DefaultRunningService() do?
DefaultRunningService() is a function in the spring-boot codebase.
What does DefaultRunningService() call?
DefaultRunningService() calls 4 function(s): env, image, labels, name.

Analyze Your Own Codebase

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

Try Supermodel Free