Dagger
Search

dagger-ci-template

This module has been generated via dagger init and serves as a reference to
basic 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@8e32b850cba9095126cb8795b13cc2f11ffcadb2

Entrypoint

Return Type
DaggerCiTemplate !
Example
dagger -m github.com/clelange/dagger-ci-template@8e32b850cba9095126cb8795b13cc2f11ffcadb2 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
NameTypeDefault ValueDescription
contextDirectory -location of source/context directory
dockerfileString !"Dockerfile"location of Dockerfile
registryImagePathString !"ttl.sh/dagger-ci-template"registry image path
publishBoolean !falsepublish to registry
Example
dagger -m github.com/clelange/dagger-ci-template@8e32b850cba9095126cb8795b13cc2f11ffcadb2 call \
 build --dockerfile string --registry-image-path string --publish boolean
func (m *myModule) example(ctx context.Context, dockerfile string, registryImagePath string, publish bool) string  {
	return dag.
			DaggerCiTemplate().
			Build(ctxdockerfile, registryImagePath, publish)
}
@function
async def example(dockerfile: str, registry_image_path: str, publish: bool) -> str:
	return await (
		dag.dagger_ci_template()
		.build(dockerfile, registry_image_path, publish)
	)
@func()
async example(dockerfile: string, registryImagePath: string, publish: boolean): Promise<string> {
	return dag
		.daggerCiTemplate()
		.build(dockerfile, registryImagePath, publish)
}