Dagger
Search

slim

No long description provided.

Installation

dagger install github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13

Entrypoint

Return Type
Slim
Example
func (m *myModule) example() *Slim  {
	return dag.
			Slim()
}
@function
def example() -> dag.Slim:
	return (
		dag.slim()
	)
@func()
example(): Slim {
	return dag
		.slim()
}

Types

Slim

minify()

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
containerContainer !-No description provided
modeStringKind -No description provided
probeHttpBooleanKind -No description provided
probeHttpExitOnFailureBooleanKind -No description provided
publishExposedPortsBooleanKind -No description provided
probeHttpPortsStringKind -No description provided
continueAfterStringKind -No description provided
showClogsBooleanKind -No description provided
slimDebugBooleanKind -No description provided
Example
Function Slim.minify is not accessible from the slim module
func (m *myModule) example(container )   {
	return dag.
			Slim().
			Minify(container)
}
@function
def example(container: ) -> :
	return (
		dag.slim()
		.minify(container)
	)
@func()
example(container: ):  {
	return dag
		.slim()
		.minify(container)
}

compare()

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
containerContainer !-No description provided
showClogsBooleanKind -No description provided
slimDebugBooleanKind -No description provided
Example
Function Slim.compare is not accessible from the slim module
func (m *myModule) example(container )   {
	return dag.
			Slim().
			Compare(container)
}
@function
def example(container: ) -> :
	return (
		dag.slim()
		.compare(container)
	)
@func()
example(container: ):  {
	return dag
		.slim()
		.compare(container)
}

withIncludePath()

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
Function Slim.withIncludePath is not accessible from the slim module
func (m *myModule) example(val )   {
	return dag.
			Slim().
			WithIncludePath(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.with_include_path(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withIncludePath(val)
}

withIncludeBin()

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
Function Slim.withIncludeBin is not accessible from the slim module
func (m *myModule) example(val )   {
	return dag.
			Slim().
			WithIncludeBin(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.with_include_bin(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withIncludeBin(val)
}

withIncludeExe()

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
Function Slim.withIncludeExe is not accessible from the slim module
func (m *myModule) example(val )   {
	return dag.
			Slim().
			WithIncludeExe(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.with_include_exe(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withIncludeExe(val)
}

withIncludeShell()

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valBooleanKind !-No description provided
Example
Function Slim.withIncludeShell is not accessible from the slim module
func (m *myModule) example(val )   {
	return dag.
			Slim().
			WithIncludeShell(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.with_include_shell(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withIncludeShell(val)
}

withIncludeNew()

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valBooleanKind !-No description provided
Example
Function Slim.withIncludeNew is not accessible from the slim module
func (m *myModule) example(val )   {
	return dag.
			Slim().
			WithIncludeNew(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.with_include_new(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withIncludeNew(val)
}

withIncludeZoneinfo()

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valBooleanKind !-No description provided
Example
Function Slim.withIncludeZoneinfo is not accessible from the slim module
func (m *myModule) example(val )   {
	return dag.
			Slim().
			WithIncludeZoneinfo(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.with_include_zoneinfo(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withIncludeZoneinfo(val)
}

withPreservePath()

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
Function Slim.withPreservePath is not accessible from the slim module
func (m *myModule) example(val )   {
	return dag.
			Slim().
			WithPreservePath(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.with_preserve_path(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withPreservePath(val)
}

withExcludePattern()

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
Function Slim.withExcludePattern is not accessible from the slim module
func (m *myModule) example(val )   {
	return dag.
			Slim().
			WithExcludePattern(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.with_exclude_pattern(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withExcludePattern(val)
}

withEnv()

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
Function Slim.withEnv is not accessible from the slim module
func (m *myModule) example(val )   {
	return dag.
			Slim().
			WithEnv(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.with_env(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withEnv(val)
}

withSensorIpcMode()

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
Function Slim.withSensorIpcMode is not accessible from the slim module
func (m *myModule) example(val )   {
	return dag.
			Slim().
			WithSensorIpcMode(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.with_sensor_ipc_mode(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withSensorIpcMode(val)
}

withSensorIpcEndpoint()

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
Function Slim.withSensorIpcEndpoint is not accessible from the slim module
func (m *myModule) example(val )   {
	return dag.
			Slim().
			WithSensorIpcEndpoint(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.with_sensor_ipc_endpoint(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withSensorIpcEndpoint(val)
}

withSourcePtrace()

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valBooleanKind !-No description provided
Example
Function Slim.withSourcePtrace is not accessible from the slim module
func (m *myModule) example(val )   {
	return dag.
			Slim().
			WithSourcePtrace(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.with_source_ptrace(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withSourcePtrace(val)
}

withImageBuildEngine()

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
Function Slim.withImageBuildEngine is not accessible from the slim module
func (m *myModule) example(val )   {
	return dag.
			Slim().
			WithImageBuildEngine(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.with_image_build_engine(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withImageBuildEngine(val)
}

withImageBuildArch()

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
Function Slim.withImageBuildArch is not accessible from the slim module
func (m *myModule) example(val )   {
	return dag.
			Slim().
			WithImageBuildArch(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.with_image_build_arch(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withImageBuildArch(val)
}

withExecProbe()

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
Function Slim.withExecProbe is not accessible from the slim module
func (m *myModule) example(val )   {
	return dag.
			Slim().
			WithExecProbe(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.with_exec_probe(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withExecProbe(val)
}

withHttpProbeCmd()

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
Function Slim.withHttpProbeCmd is not accessible from the slim module
func (m *myModule) example(val )   {
	return dag.
			Slim().
			WithHttpProbeCmd(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.with_http_probe_cmd(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withHttpProbeCmd(val)
}

withExposePort()

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
Function Slim.withExposePort is not accessible from the slim module
func (m *myModule) example(val )   {
	return dag.
			Slim().
			WithExposePort(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.with_expose_port(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withExposePort(val)
}

withPublishPort()

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
Function Slim.withPublishPort is not accessible from the slim module
func (m *myModule) example(val )   {
	return dag.
			Slim().
			WithPublishPort(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.with_publish_port(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withPublishPort(val)
}