Dagger
Search

timpkg

No long description provided.

Installation

dagger install github.com/anthonybrice/timpkg@69574fe645a6a5ef7d7b5fef84d18eb75a4ca6cf

Entrypoint

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

Types

Timpkg

withDev()

Return Type
Timpkg !
Example
dagger -m github.com/anthonybrice/timpkg@69574fe645a6a5ef7d7b5fef84d18eb75a4ca6cf call \
 with-dev \
 push-dirs --dir DIR_PATH
func (m *myModule) example() *Timpkg  {
	return dag.
			Timpkg().
			WithDev()
}
@function
def example() -> dag.Timpkg:
	return (
		dag.timpkg()
		.with_dev()
	)
@func()
example(): Timpkg {
	return dag
		.timpkg()
		.withDev()
}

pushDirs()

Publish all modules in the directory to the container registry.

Return Type
String !
Arguments
NameTypeDefault ValueDescription
dirDirectory !-No description provided
tokenString -No description provided
Example
dagger -m github.com/anthonybrice/timpkg@69574fe645a6a5ef7d7b5fef84d18eb75a4ca6cf call \
 push-dirs --dir DIR_PATH
func (m *myModule) example(ctx context.Context, dir *Directory) string  {
	return dag.
			Timpkg().
			PushDirs(ctx, dir)
}
@function
async def example(dir: dagger.Directory) -> str:
	return await (
		dag.timpkg()
		.push_dirs(dir)
	)
@func()
async example(dir: Directory): Promise<string> {
	return dag
		.timpkg()
		.pushDirs(dir)
}

pushDir()

Publish module at directory to the container registry.

Return Type
String !
Arguments
NameTypeDefault ValueDescription
dirDirectory !-No description provided
tokenString -No description provided
Example
dagger -m github.com/anthonybrice/timpkg@69574fe645a6a5ef7d7b5fef84d18eb75a4ca6cf call \
 push-dir --dir DIR_PATH
func (m *myModule) example(ctx context.Context, dir *Directory) string  {
	return dag.
			Timpkg().
			PushDir(ctx, dir)
}
@function
async def example(dir: dagger.Directory) -> str:
	return await (
		dag.timpkg()
		.push_dir(dir)
	)
@func()
async example(dir: Directory): Promise<string> {
	return dag
		.timpkg()
		.pushDir(dir)
}