Dagger
Search

slim

No long description provided.

Installation

dagger install github.com/slimtoolkit/daggerverse/slim-with-docker@ff9d823be8520baa76812a70588573c439d1b015

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 🔗

nop() 🔗

Return Type
StringKind !
Arguments
NameTypeDefault ValueDescription
nameStringKind !-No description provided
doitBooleanKind -No description provided
Example
Function Slim.nop is not accessible from the slim module
func (m *myModule) example(name )   {
	return dag.
			Slim().
			Nop(name)
}
@function
def example(name: ) -> :
	return (
		dag.slim()
		.nop(name)
	)
@func()
example(name: ):  {
	return dag
		.slim()
		.nop(name)
}

debug() 🔗

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

slim() 🔗

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