Dagger
Search

build

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/antonkad/build-image@7a9cbcc55022e5c5c0a7eeecc6e756ad985e97a9

Entrypoint

Return Type
Build
Example
dagger -m github.com/antonkad/build-image@7a9cbcc55022e5c5c0a7eeecc6e756ad985e97a9 call \
func (m *MyModule) Example() *dagger.Build  {
	return dag.
			Build()
}
@function
def example() -> dagger.Build:
	return (
		dag.build()
	)
@func()
example(): Build {
	return dag
		.build()
}

Types

Build 🔗

buildDocker() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
jobAttemptString -No description provided
repositoryString !-No description provided
refString -No description provided
pathString -No description provided
jobString -No description provided
frameworkString !-No description provided
packageManagerString -No description provided
exposedPortInteger -No description provided
Example
dagger -m github.com/antonkad/build-image@7a9cbcc55022e5c5c0a7eeecc6e756ad985e97a9 call \
 build-docker --repository string --framework string
func (m *MyModule) Example(repository string, framework string) *dagger.Container  {
	return dag.
			Build().
			BuildDocker(repository, framework)
}
@function
def example(repository: str, framework: str) -> dagger.Container:
	return (
		dag.build()
		.build_docker(repository, framework)
	)
@func()
example(repository: string, framework: string): Container {
	return dag
		.build()
		.buildDocker(repository, framework)
}

buildNext() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
jobAttemptString -No description provided
repositoryString !-No description provided
refString -No description provided
pathString -No description provided
jobString -No description provided
frameworkString !-No description provided
packageManagerString -No description provided
exposedPortInteger -No description provided
Example
dagger -m github.com/antonkad/build-image@7a9cbcc55022e5c5c0a7eeecc6e756ad985e97a9 call \
 build-next --repository string --framework string
func (m *MyModule) Example(repository string, framework string) *dagger.Container  {
	return dag.
			Build().
			BuildNext(repository, framework)
}
@function
def example(repository: str, framework: str) -> dagger.Container:
	return (
		dag.build()
		.build_next(repository, framework)
	)
@func()
example(repository: string, framework: string): Container {
	return dag
		.build()
		.buildNext(repository, framework)
}

buildNginx() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
jobAttemptString -No description provided
repositoryString !-No description provided
refString -No description provided
pathString -No description provided
jobString -No description provided
frameworkString !-No description provided
packageManagerString -No description provided
exposedPortInteger -No description provided
Example
dagger -m github.com/antonkad/build-image@7a9cbcc55022e5c5c0a7eeecc6e756ad985e97a9 call \
 build-nginx --repository string --framework string
func (m *MyModule) Example(repository string, framework string) *dagger.Container  {
	return dag.
			Build().
			BuildNginx(repository, framework)
}
@function
def example(repository: str, framework: str) -> dagger.Container:
	return (
		dag.build()
		.build_nginx(repository, framework)
	)
@func()
example(repository: string, framework: string): Container {
	return dag
		.build()
		.buildNginx(repository, framework)
}

npmBuild() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
jobAttemptString -No description provided
repositoryString !-No description provided
refString -No description provided
pathString -No description provided
jobString -No description provided
packageManagerString -No description provided
Example
dagger -m github.com/antonkad/build-image@7a9cbcc55022e5c5c0a7eeecc6e756ad985e97a9 call \
 npm-build --repository string
func (m *MyModule) Example(repository string) *dagger.Container  {
	return dag.
			Build().
			NpmBuild(repository)
}
@function
def example(repository: str) -> dagger.Container:
	return (
		dag.build()
		.npm_build(repository)
	)
@func()
example(repository: string): Container {
	return dag
		.build()
		.npmBuild(repository)
}

npmInstall() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
sourceDirectory !-No description provided
jobAttemptString !-No description provided
jobString !-No description provided
packageManagerString !-No description provided
Example
dagger -m github.com/antonkad/build-image@7a9cbcc55022e5c5c0a7eeecc6e756ad985e97a9 call \
 npm-install --source DIR_PATH --job-attempt string --job string --package-manager string
func (m *MyModule) Example(source *dagger.Directory, jobAttempt string, job string, packageManager string) *dagger.Container  {
	return dag.
			Build().
			NpmInstall(source, jobAttempt, job, packageManager)
}
@function
def example(source: dagger.Directory, job_attempt: str, job: str, package_manager: str) -> dagger.Container:
	return (
		dag.build()
		.npm_install(source, job_attempt, job, package_manager)
	)
@func()
example(source: Directory, jobAttempt: string, job: string, packageManager: string): Container {
	return dag
		.build()
		.npmInstall(source, jobAttempt, job, packageManager)
}

publish() 🔗

Return Type
String !
Arguments
NameTypeDefault ValueDescription
jobAttemptString -No description provided
repositoryString !-No description provided
refString -No description provided
pathString -No description provided
jobString -No description provided
frameworkString !-No description provided
packageManagerString -No description provided
exposedPortInteger -No description provided
imageNameString !-Image name for the registry (e.g. project ID)
registryUrlString !-Registry URL (e.g. 192.168.1.150:30082)
registryUserString !-Registry username
registryPasswordSecret !-Registry password
Example
dagger -m github.com/antonkad/build-image@7a9cbcc55022e5c5c0a7eeecc6e756ad985e97a9 call \
 publish --repository string --framework string --image-name string --registry-url string --registry-user string --registry-password env:MYSECRET
func (m *MyModule) Example(ctx context.Context, repository string, framework string, imageName string, registryUrl string, registryUser string, registryPassword *dagger.Secret) string  {
	return dag.
			Build().
			Publish(ctxrepository, framework, imageName, registryUrl, registryUser, registryPassword)
}
@function
async def example(repository: str, framework: str, image_name: str, registry_url: str, registry_user: str, registry_password: dagger.Secret) -> str:
	return await (
		dag.build()
		.publish(repository, framework, image_name, registry_url, registry_user, registry_password)
	)
@func()
async example(repository: string, framework: string, imageName: string, registryUrl: string, registryUser: string, registryPassword: Secret): Promise<string> {
	return dag
		.build()
		.publish(repository, framework, imageName, registryUrl, registryUser, registryPassword)
}

test() 🔗

Return Type
Container !
Example
dagger -m github.com/antonkad/build-image@7a9cbcc55022e5c5c0a7eeecc6e756ad985e97a9 call \
 test
func (m *MyModule) Example() *dagger.Container  {
	return dag.
			Build().
			Test()
}
@function
def example() -> dagger.Container:
	return (
		dag.build()
		.test()
	)
@func()
example(): Container {
	return dag
		.build()
		.test()
}