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@b575c6ad2f3ef1d59d9402fa55484a1e8989a3f5

Entrypoint

Return Type
Build
Example
dagger -m github.com/antonkad/build-image@b575c6ad2f3ef1d59d9402fa55484a1e8989a3f5 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@b575c6ad2f3ef1d59d9402fa55484a1e8989a3f5 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@b575c6ad2f3ef1d59d9402fa55484a1e8989a3f5 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@b575c6ad2f3ef1d59d9402fa55484a1e8989a3f5 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@b575c6ad2f3ef1d59d9402fa55484a1e8989a3f5 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@b575c6ad2f3ef1d59d9402fa55484a1e8989a3f5 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
registryUrlString !-Registry URL (e.g. 192.168.1.150:30082)
registryUserString !-Registry username
registryPasswordSecret !-Registry password
Example
dagger -m github.com/antonkad/build-image@b575c6ad2f3ef1d59d9402fa55484a1e8989a3f5 call \
 publish --repository string --framework string --registry-url string --registry-user string --registry-password env:MYSECRET
func (m *MyModule) Example(ctx context.Context, repository string, framework string, registryUrl string, registryUser string, registryPassword *dagger.Secret) string  {
	return dag.
			Build().
			Publish(ctxrepository, framework, registryUrl, registryUser, registryPassword)
}
@function
async def example(repository: str, framework: str, registry_url: str, registry_user: str, registry_password: dagger.Secret) -> str:
	return await (
		dag.build()
		.publish(repository, framework, registry_url, registry_user, registry_password)
	)
@func()
async example(repository: string, framework: string, registryUrl: string, registryUser: string, registryPassword: Secret): Promise<string> {
	return dag
		.build()
		.publish(repository, framework, registryUrl, registryUser, registryPassword)
}

test() 🔗

Return Type
Container !
Example
dagger -m github.com/antonkad/build-image@b575c6ad2f3ef1d59d9402fa55484a1e8989a3f5 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()
}