slim
No long description provided.
Installation
dagger install github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13Entrypoint
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
| Name | Type | Default Value | Description |
|---|---|---|---|
| container | Container ! | - | No description provided |
| mode | StringKind | - | No description provided |
| probeHttp | BooleanKind | - | No description provided |
| probeHttpExitOnFailure | BooleanKind | - | No description provided |
| publishExposedPorts | BooleanKind | - | No description provided |
| probeHttpPorts | StringKind | - | No description provided |
| continueAfter | StringKind | - | No description provided |
| showClogs | BooleanKind | - | No description provided |
| slimDebug | BooleanKind | - | No description provided |
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
minifyfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| container | Container ! | - | No description provided |
| showClogs | BooleanKind | - | No description provided |
| slimDebug | BooleanKind | - | No description provided |
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
comparefunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| val | StringKind ! | - | No description provided |
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
with-include-pathfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| val | StringKind ! | - | No description provided |
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
with-include-binfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| val | StringKind ! | - | No description provided |
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
with-include-exefunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| val | BooleanKind ! | - | No description provided |
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
with-include-shellfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| val | BooleanKind ! | - | No description provided |
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
with-include-newfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| val | BooleanKind ! | - | No description provided |
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
with-include-zoneinfofunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| val | StringKind ! | - | No description provided |
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
with-preserve-pathfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| val | StringKind ! | - | No description provided |
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
with-exclude-patternfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| val | StringKind ! | - | No description provided |
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
with-envfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| val | StringKind ! | - | No description provided |
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
with-sensor-ipc-modefunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| val | StringKind ! | - | No description provided |
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
with-sensor-ipc-endpointfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| val | BooleanKind ! | - | No description provided |
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
with-source-ptracefunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| val | StringKind ! | - | No description provided |
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
with-image-build-enginefunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| val | StringKind ! | - | No description provided |
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
with-image-build-archfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| val | StringKind ! | - | No description provided |
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
with-exec-probefunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| val | StringKind ! | - | No description provided |
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
with-http-probe-cmdfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| val | StringKind ! | - | No description provided |
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
with-expose-portfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| val | StringKind ! | - | No description provided |
Example
dagger -m github.com/slimtoolkit/daggerverse/slim@da6d0f7599570fd3c9f1df89761c6633f3507b13 call \
with-publish-portfunc (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)
}