Dagger
Search

cloudsmith

Base for cloudsmith-cli

Installation

dagger install github.com/jmiller-cs/daggerverse/cloudsmith@4c5bd7d92fad28449da8b19138bd2dd37976ee42

Entrypoint

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

Types

Cloudsmith 🔗

base() 🔗

Returns a minimal Container with cloudsmith-cli

Return Type
Container !
Example
dagger -m github.com/jmiller-cs/daggerverse/cloudsmith@4c5bd7d92fad28449da8b19138bd2dd37976ee42 call \
 base
func (m *myModule) example() *Container  {
	return dag.
			Cloudsmith().
			Base()
}
@function
def example() -> dagger.Container:
	return (
		dag.cloudsmith()
		.base()
	)
@func()
example(): Container {
	return dag
		.cloudsmith()
		.base()
}