Dagger
Search

slim

No long description provided.

Installation

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

Entrypoint

Return Type
Slim
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
func (m *MyModule) Example() *dagger.Slim  {
	return dag.
			Slim()
}
@function
def example() -> dagger.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
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
 minify
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
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
 compare
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
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
 with-include-path
func (m *MyModule) Example(val )   {
	return dag.
			Slim().
			Withincludepath(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.withincludepath(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withIncludePath(val)
}

withIncludeBin() 🔗

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
 with-include-bin
func (m *MyModule) Example(val )   {
	return dag.
			Slim().
			Withincludebin(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.withincludebin(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withIncludeBin(val)
}

withIncludeExe() 🔗

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
 with-include-exe
func (m *MyModule) Example(val )   {
	return dag.
			Slim().
			Withincludeexe(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.withincludeexe(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withIncludeExe(val)
}

withIncludeShell() 🔗

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valBooleanKind !-No description provided
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
 with-include-shell
func (m *MyModule) Example(val )   {
	return dag.
			Slim().
			Withincludeshell(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.withincludeshell(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withIncludeShell(val)
}

withIncludeNew() 🔗

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valBooleanKind !-No description provided
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
 with-include-new
func (m *MyModule) Example(val )   {
	return dag.
			Slim().
			Withincludenew(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.withincludenew(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withIncludeNew(val)
}

withIncludeZoneinfo() 🔗

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valBooleanKind !-No description provided
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
 with-include-zoneinfo
func (m *MyModule) Example(val )   {
	return dag.
			Slim().
			Withincludezoneinfo(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.withincludezoneinfo(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withIncludeZoneinfo(val)
}

withPreservePath() 🔗

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
 with-preserve-path
func (m *MyModule) Example(val )   {
	return dag.
			Slim().
			Withpreservepath(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.withpreservepath(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withPreservePath(val)
}

withExcludePattern() 🔗

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
 with-exclude-pattern
func (m *MyModule) Example(val )   {
	return dag.
			Slim().
			Withexcludepattern(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.withexcludepattern(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withExcludePattern(val)
}

withEnv() 🔗

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
 with-env
func (m *MyModule) Example(val )   {
	return dag.
			Slim().
			Withenv(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.withenv(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withEnv(val)
}

withSensorIpcMode() 🔗

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
 with-sensor-ipc-mode
func (m *MyModule) Example(val )   {
	return dag.
			Slim().
			Withsensoripcmode(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.withsensoripcmode(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withSensorIpcMode(val)
}

withSensorIpcEndpoint() 🔗

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
 with-sensor-ipc-endpoint
func (m *MyModule) Example(val )   {
	return dag.
			Slim().
			Withsensoripcendpoint(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.withsensoripcendpoint(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withSensorIpcEndpoint(val)
}

withSourcePtrace() 🔗

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valBooleanKind !-No description provided
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
 with-source-ptrace
func (m *MyModule) Example(val )   {
	return dag.
			Slim().
			Withsourceptrace(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.withsourceptrace(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withSourcePtrace(val)
}

withImageBuildEngine() 🔗

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
 with-image-build-engine
func (m *MyModule) Example(val )   {
	return dag.
			Slim().
			Withimagebuildengine(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.withimagebuildengine(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withImageBuildEngine(val)
}

withImageBuildArch() 🔗

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
 with-image-build-arch
func (m *MyModule) Example(val )   {
	return dag.
			Slim().
			Withimagebuildarch(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.withimagebuildarch(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withImageBuildArch(val)
}

withExecProbe() 🔗

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
 with-exec-probe
func (m *MyModule) Example(val )   {
	return dag.
			Slim().
			Withexecprobe(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.withexecprobe(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withExecProbe(val)
}

withHttpProbeCmd() 🔗

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
 with-http-probe-cmd
func (m *MyModule) Example(val )   {
	return dag.
			Slim().
			Withhttpprobecmd(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.withhttpprobecmd(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withHttpProbeCmd(val)
}

withExposePort() 🔗

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
 with-expose-port
func (m *MyModule) Example(val )   {
	return dag.
			Slim().
			Withexposeport(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.withexposeport(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withExposePort(val)
}

withPublishPort() 🔗

Return Type
Slim !
Arguments
NameTypeDefault ValueDescription
valStringKind !-No description provided
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
 with-publish-port
func (m *MyModule) Example(val )   {
	return dag.
			Slim().
			Withpublishport(val)
}
@function
def example(val: ) -> :
	return (
		dag.slim()
		.withpublishport(val)
	)
@func()
example(val: ):  {
	return dag
		.slim()
		.withPublishPort(val)
}