container-structure-test
No long description provided.
Installation
dagger install github.com/jalvarezit/daggerverse/container-structure-test@bda7c65efec79a5ae6253f8a5d0683f7dec9b15d
Entrypoint
Return Type
ContainerStructureTest
Example
dagger -m github.com/jalvarezit/daggerverse/container-structure-test@bda7c65efec79a5ae6253f8a5d0683f7dec9b15d call \
func (m *myModule) example() *ContainerStructureTest {
return dag.
ContainerStructureTest()
}
@function
def example() -> dag.ContainerStructureTest:
return (
dag.container_structure_test()
)
@func()
example(): ContainerStructureTest {
return dag
.containerStructureTest()
}
Types
ContainerStructureTest 🔗
test() 🔗
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
image | String ! | - | No description provided |
config | File ! | - | No description provided |
Example
dagger -m github.com/jalvarezit/daggerverse/container-structure-test@bda7c65efec79a5ae6253f8a5d0683f7dec9b15d call \
test --image string --config file:path
func (m *myModule) example(image string, config *File) *Container {
return dag.
ContainerStructureTest().
Test(image, config)
}
@function
def example(image: str, config: dagger.File) -> dagger.Container:
return (
dag.container_structure_test()
.test(image, config)
)
@func()
example(image: string, config: File): Container {
return dag
.containerStructureTest()
.test(image, config)
}