docs/current_docs/extending/modules/daggerverse.mdx
Dagger Functions are packaged and shared using Dagger modules.
The Daggerverse is a free service run by Dagger, which indexes all publicly available Dagger Functions, and lets you easily search and consume them. To help users find the best quality modules, a basic rank is applied to modules for sorting the module index.
Read about best practices to improve module ranking.
Daggerverse will automatically show basic examples for each function in a module. If you would like to provide hand-crafted examples, the following section will describe how to set these up.
<Tabs groupId="language" queryString="sdk"> <TabItem value="go" label="Go">A Go example must be a Dagger module located at /examples/go within the module you're creating examples for.
If you have a module called Foo and a function called Bar, you can create the following functions in your example module:
A function Foo_Baz will create a top level example for the Foo module called Baz.
A function FooBar will create an example for function Bar.
Functions FooBar_Baz will create a Baz example for the function Bar.
A Python example must be a Dagger module located at /examples/python within the module you're creating examples for.
If you have a module called foo and a function called bar, you can create the following functions in your example module:
A function foo__baz will create a top level example for the foo module called baz.
A function foo_bar will create an example for function bar.
Functions foo_bar__baz will create a baz example for the function bar.
:::note
Python function names in example modules use double underscores (__) as separators since by convention, Python uses single underscores to represent spaces in function names (snake case).
:::
A TypeScript example must be a Dagger module located at /examples/typescript within the module you're creating examples for.
If you have a module called foo and a function called bar, you can create the following functions in your example module:
A function foo_baz will create a top level example for the foo module called baz.
A function fooBar will create an example for function bar.
Functions fooBar_baz and will create a baz example for the function bar.
A Shell example must be a shell script located at /examples/shell within the module you're creating examples for.
If you have a module called foo and a function called bar, you can create the following script in your example directory:
A file foo_baz.sh will create a top level example for the foo module called baz.
A file foo_bar.sh will create an example for function bar.
Files foo_bar_baz.sh and will create a baz example for the function bar.
For an example of a module with hand-crafted function examples, see the proxy module
Two processes are available to publish your Dagger module to the Daggerverse, manual and automatic on use.
To manually publish a module to the Daggerverse, follow the steps below:
To publish a Dagger module to the Daggerverse, the module must be pushed to a public git repository. Dagger is agnostic to repository layout, and any number of Dagger modules can peacefully coexist in a repository. It's up to you how to organize your module's source code in Git. Some like to publish each module as a dedicated repository; others like to organize all their modules together, with the git repository acting as a "catalog". These repositories are often named "daggerverse" by convention.
Navigate to the Daggerverse and click the Publish button. On the resulting page, paste the URL to the Git repository containing your module in the format GITSERVER/USERNAME/REPOSITORY[/SUBPATH][@VERSION]. For example, github.com/shykes/[email protected] or github.com/shykes/daggerverse/termcast@main
Click "Publish" to have your Dagger module published to the Daggerverse. This process may take a few minutes. Once complete, your Dagger module will appear in the Daggerverse module listing.
:::important
Every time that a user executes dagger ..., if any of the Dagger Functions which are invoked in the execution come from a remote Dagger module (here, a remote module is defined as a module whose location is specified by a URL like GITSERVER/USERNAME/daggerverse/...), that Dagger module will automatically be published to the Daggerverse.
:::note Under this process, it is possible for some Dagger modules to appear in the Daggerverse even when they're not fully ready. An example of this is when the module developer is developing the module in a local development environment and pushing work-in-progress to the Git repository. In this case, as soon as the module developer tags the module with a valid semantic version number, the module will be considered released and the latest version will be published to the Daggerverse. :::
Dagger modules should be versioned according to semantic versioning principles. This means that the published module reference should be tagged with a pattern matching vMAJOR.MINOR.PATCH, such as v1.2.3.
:::important
At this time, only version numbers matching the vMAJOR.MINOR.PATCH versioning pattern are considered valid.
:::
In monorepos of modules, modules can be independently versioned by prefixing the tag with the subpath. For example a module named foo can be tagged with foo/v1.2.3 and referenced as GITSERVER/USERNAME/REPOSITORY/[email protected].