Dagger
Search

ci

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/llorenzinho/dagger-package-repository@3cd01448296a9c287f73ec8de3426c73f66c3a70

Entrypoint

Return Type
Ci
Example
func (m *myModule) example() *Ci  {
	return dag.
			Ci()
}
@function
def example() -> dag.Ci:
	return (
		dag.ci()
	)
@func()
example(): Ci {
	return dag
		.ci()
}

Types

Ci 🔗

buildDocker() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
dirDirectory !-No description provided
Example
dagger -m github.com/llorenzinho/dagger-package-repository@3cd01448296a9c287f73ec8de3426c73f66c3a70 call \
 build-docker --dir DIR_PATH
func (m *myModule) example(dir *Directory) *Container  {
	return dag.
			Ci().
			BuildDocker(dir)
}
@function
def example(dir: dagger.Directory) -> dagger.Container:
	return (
		dag.ci()
		.build_docker(dir)
	)
@func()
example(dir: Directory): Container {
	return dag
		.ci()
		.buildDocker(dir)
}