Interface ImageConfig.Builder

  • Method Details

    • entryPoint

      ImageConfig.Builder entryPoint(Collection<String> entryPoint)

      Specifies the entry point to their application, which is typically the location of the runtime executable.

      Parameters:
      entryPoint - Specifies the entry point to their application, which is typically the location of the runtime executable.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • entryPoint

      ImageConfig.Builder entryPoint(String... entryPoint)

      Specifies the entry point to their application, which is typically the location of the runtime executable.

      Parameters:
      entryPoint - Specifies the entry point to their application, which is typically the location of the runtime executable.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • command

      Specifies parameters that you want to pass in with ENTRYPOINT.

      Parameters:
      command - Specifies parameters that you want to pass in with ENTRYPOINT.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • command

      ImageConfig.Builder command(String... command)

      Specifies parameters that you want to pass in with ENTRYPOINT.

      Parameters:
      command - Specifies parameters that you want to pass in with ENTRYPOINT.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • workingDirectory

      ImageConfig.Builder workingDirectory(String workingDirectory)

      Specifies the working directory.

      Parameters:
      workingDirectory - Specifies the working directory.
      Returns:
      Returns a reference to this object so that method calls can be chained together.