Interface DockerComposeCustomizer

All Superinterfaces:
org.springframework.core.Ordered

public interface DockerComposeCustomizer extends org.springframework.core.Ordered
Interface for customizing the docker-compose file during the post-processing phase.
  • Field Summary

    Fields inherited from interface org.springframework.core.Ordered

    HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    customize(Map<String,Object> yamlStructure, String outputDir, Manifest manifest)
    Customizes the structure of a docker-compose YAML file during the post-processing phase.
    default int
     
  • Method Details

    • customize

      void customize(Map<String,Object> yamlStructure, String outputDir, Manifest manifest)
      Customizes the structure of a docker-compose YAML file during the post-processing phase.
      Parameters:
      yamlStructure - a map representing the structure of a YAML file, where keys are string identifiers and values represent corresponding YAML elements.
      outputDir - docker-compose output directory
      manifest - the project manifest
    • getOrder

      default int getOrder()
      Specified by:
      getOrder in interface org.springframework.core.Ordered