Dagger
Search

openring

No long description provided.

Installation

dagger install github.com/levlaz/daggerverse/openring@v0.1.0

Entrypoint

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

Types

Openring 🔗

ctr() 🔗

Return Type
Container !
Example
dagger -m github.com/levlaz/daggerverse/openring@627c9f936cb36c2cac625f466059435e4d013585 call \
 ctr
func (m *myModule) example() *Container  {
	return dag.
			Openring().
			Ctr()
}
@function
def example() -> dagger.Container:
	return (
		dag.openring()
		.ctr()
	)
@func()
example(): Container {
	return dag
		.openring()
		.ctr()
}

openring() 🔗

Generate Openring snippet

Return Type
File !
Arguments
NameTypeDefault ValueDescription
sourcesFile !-File containing list of feeds to include
templateFile -Optional HTML template file
Example
dagger -m github.com/levlaz/daggerverse/openring@627c9f936cb36c2cac625f466059435e4d013585 call \
 openring --sources file:path
func (m *myModule) example(sources *File) *File  {
	return dag.
			Openring().
			Openring(sources)
}
@function
def example(sources: dagger.File) -> dagger.File:
	return (
		dag.openring()
		.openring(sources)
	)
@func()
example(sources: File): File {
	return dag
		.openring()
		.openring(sources)
}