Dagger
Search

example

No long description provided.

Installation

dagger install github.com/sipsma/daggerverse/example@9239c6bfe5e039552107535d3fea1b647f956167

Entrypoint

Return Type
Example
Example
func (m *myModule) example() *Example  {
	return dag.
			Example()
}

Types

Example 🔗

appContainer() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
srcDirDirectory -No description provided
nodeVersionStringKind -No description provided
Example
func (m *myModule) example()   {
	return dag.
			Example().
			AppContainer()
}

service() 🔗

TODO: remove this after https://github.com/dagger/dagger/pull/6039 merged+released

Return Type
Service !
Arguments
NameTypeDefault ValueDescription
srcDirDirectory -No description provided
nodeVersionStringKind -No description provided
Example
func (m *myModule) example()   {
	return dag.
			Example().
			Service()
}

debug() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
srcDirDirectory -No description provided
nodeVersionStringKind -No description provided
Example
func (m *myModule) example()   {
	return dag.
			Example().
			Debug()
}

build() 🔗

Return Type
Directory !
Arguments
NameTypeDefault ValueDescription
srcDirDirectory -No description provided
nodeVersionStringKind -No description provided
Example
func (m *myModule) example()   {
	return dag.
			Example().
			Build()
}

test() 🔗

Return Type
StringKind !
Arguments
NameTypeDefault ValueDescription
srcDirDirectory -No description provided
nodeVersionStringKind -No description provided
Example
func (m *myModule) example()   {
	return dag.
			Example().
			Test()
}

publishContainer() 🔗

Return Type
StringKind !
Arguments
NameTypeDefault ValueDescription
srcDirDirectory -No description provided
nodeVersionStringKind -No description provided
Example
func (m *myModule) example()   {
	return dag.
			Example().
			PublishContainer()
}