Dagger
Search

examples

Examples for Trivy module

Installation

dagger install github.com/sagikazarmark/daggerverse/trivy/examples/go@dbd2d753fdab3d307c66f84609076f27bf2b71e0

Entrypoint

Return Type
Examples
Example
dagger -m github.com/sagikazarmark/daggerverse/trivy/examples/go@dbd2d753fdab3d307c66f84609076f27bf2b71e0 call \
func (m *myModule) example() *Examples  {
	return dag.
			Examples()
}
@function
def example() -> dag.Examples:
	return (
		dag.examples()
	)
@func()
example(): Examples {
	return dag
		.examples()
}

Types

Examples 🔗

all() 🔗

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/trivy/examples/go@dbd2d753fdab3d307c66f84609076f27bf2b71e0 call \
 all
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Examples().
			All(ctx)
}
@function
async def example() -> None:
	return await (
		dag.examples()
		.all()
	)
@func()
async example(): Promise<void> {
	return dag
		.examples()
		.all()
}

trivyNew() 🔗

This example showcases how to initialize the Trivy module.

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/trivy/examples/go@dbd2d753fdab3d307c66f84609076f27bf2b71e0 call \
 trivy-new
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Examples().
			TrivyNew(ctx)
}
@function
async def example() -> None:
	return await (
		dag.examples()
		.trivy_new()
	)
@func()
async example(): Promise<void> {
	return dag
		.examples()
		.trivyNew()
}

trivyOutput() 🔗

This example showcases how to initialize the Trivy module.

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/trivy/examples/go@dbd2d753fdab3d307c66f84609076f27bf2b71e0 call \
 trivy-output
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Examples().
			TrivyOutput(ctx)
}
@function
async def example() -> None:
	return await (
		dag.examples()
		.trivy_output()
	)
@func()
async example(): Promise<void> {
	return dag
		.examples()
		.trivyOutput()
}

trivyContainer() 🔗

This example showcases how to scan a container with Trivy.

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/trivy/examples/go@dbd2d753fdab3d307c66f84609076f27bf2b71e0 call \
 trivy-container
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Examples().
			TrivyContainer(ctx)
}
@function
async def example() -> None:
	return await (
		dag.examples()
		.trivy_container()
	)
@func()
async example(): Promise<void> {
	return dag
		.examples()
		.trivyContainer()
}

trivyHelm() 🔗

This example showcases how to scan a Helm chart with Trivy.

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/trivy/examples/go@dbd2d753fdab3d307c66f84609076f27bf2b71e0 call \
 trivy-helm
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Examples().
			TrivyHelm(ctx)
}
@function
async def example() -> None:
	return await (
		dag.examples()
		.trivy_helm()
	)
@func()
async example(): Promise<void> {
	return dag
		.examples()
		.trivyHelm()
}