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
Name | Type | Default Value | Description |
---|---|---|---|
srcDir | Directory | - | No description provided |
nodeVersion | StringKind | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
srcDir | Directory | - | No description provided |
nodeVersion | StringKind | - | No description provided |
Example
func (m *myModule) example() {
return dag.
Example().
Service()
}
debug() 🔗
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
srcDir | Directory | - | No description provided |
nodeVersion | StringKind | - | No description provided |
Example
func (m *myModule) example() {
return dag.
Example().
Debug()
}
build() 🔗
Return Type
Directory !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
srcDir | Directory | - | No description provided |
nodeVersion | StringKind | - | No description provided |
Example
func (m *myModule) example() {
return dag.
Example().
Build()
}
test() 🔗
Return Type
StringKind !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
srcDir | Directory | - | No description provided |
nodeVersion | StringKind | - | No description provided |
Example
func (m *myModule) example() {
return dag.
Example().
Test()
}
publishContainer() 🔗
Return Type
StringKind !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
srcDir | Directory | - | No description provided |
nodeVersion | StringKind | - | No description provided |
Example
func (m *myModule) example() {
return dag.
Example().
PublishContainer()
}