dagger-ci-template
This module has been generated via dagger init and serves as a reference tobasic module structure as you get started with Dagger.
Two functions have been pre-created. You can modify, delete, or add to them,
as needed. They demonstrate usage of arguments and return types using simple
echo and grep commands. The functions can be called from the dagger CLI or
from one of the SDKs.
The first line in this comment block is a short description line and the
rest is a long description with more detail on the module's purpose or usage,
if appropriate. All modules should have a short description.
Installation
dagger install github.com/clelange/dagger-ci-template@75d9ac86ed9f0356bfe982a4a50b71742299fd52
Entrypoint
Return Type
DaggerCiTemplate !
Example
dagger -m github.com/clelange/dagger-ci-template@75d9ac86ed9f0356bfe982a4a50b71742299fd52 call \
func (m *myModule) example() *DaggerCiTemplate {
return dag.
DaggerCiTemplate()
}
@function
def example() -> dag.DaggerCiTemplate:
return (
dag.dagger_ci_template()
)
@func()
example(): DaggerCiTemplate {
return dag
.daggerCiTemplate()
}
Types
DaggerCiTemplate 🔗
build() 🔗
Build and publish image from Dockerfile
This example uses a build context directory in a different location than the current working directory.
Return Type
String !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
context | Directory | - | location of source/context directory |
dockerfile | String ! | "Dockerfile" | location of Dockerfile |
publish | Boolean ! | false | publish to registry |
Example
dagger -m github.com/clelange/dagger-ci-template@75d9ac86ed9f0356bfe982a4a50b71742299fd52 call \
build --dockerfile string --publish boolean
func (m *myModule) example(ctx context.Context, dockerfile string, publish bool) string {
return dag.
DaggerCiTemplate().
Build(ctxdockerfile, publish)
}
@function
async def example(dockerfile: str, publish: bool) -> str:
return await (
dag.dagger_ci_template()
.build(dockerfile, publish)
)
@func()
async example(dockerfile: string, publish: boolean): Promise<string> {
return dag
.daggerCiTemplate()
.build(dockerfile, publish)
}