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() *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
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 \
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
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 \
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
Name | Type | Default Value | Description |
---|---|---|---|
val | StringKind ! | - | 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()
.with_include_path(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-bin
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
Name | Type | Default Value | Description |
---|---|---|---|
val | StringKind ! | - | 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()
.with_include_exe(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-shell
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
Name | Type | Default Value | Description |
---|---|---|---|
val | BooleanKind ! | - | 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()
.with_include_new(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-zoneinfo
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
Name | Type | Default Value | Description |
---|---|---|---|
val | StringKind ! | - | 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()
.with_preserve_path(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-pattern
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
Name | Type | Default Value | Description |
---|---|---|---|
val | StringKind ! | - | 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()
.with_env(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-mode
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
Name | Type | Default Value | Description |
---|---|---|---|
val | StringKind ! | - | 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()
.with_sensor_ipc_endpoint(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-ptrace
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
Name | Type | Default Value | Description |
---|---|---|---|
val | StringKind ! | - | 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()
.with_image_build_engine(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-arch
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
Name | Type | Default Value | Description |
---|---|---|---|
val | StringKind ! | - | 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()
.with_exec_probe(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-cmd
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
Name | Type | Default Value | Description |
---|---|---|---|
val | StringKind ! | - | 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()
.with_expose_port(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-port
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)
}