Frequently asked questions
Is Wave a container registry?
Wave implements the Docker registry pull API, and therefore allows Docker and other compatible container engines to pull container images from it. However, strictly speaking it's not a container registry because it does not store container images, and it's not possible to push an image into it.
From a technical point of view, Wave behaves as a proxy server that intermediates container pull requests from the Docker client and the target registry where the container image is stored.
Why I should use Wave instead of a container registry?
Wave has been designed to streamline the use of software containers with Nextflow data analysis pipelines, in three ways:
- Safely handle the authentication of container repositories to allow access to private registries and the ability to pull from public registries without being affected by service rate limits.
- Dynamically include in the container execution context pipeline scripts and infrastructure-related dependencies, without the need to rebuild the corresponding containers.
- Building the pipeline containers on-demand, using Dockerfiles associated with the pipeline modules or Conda packages specified in the pipeline configuration.
How I can specify the credentials of my private container registry when using Wave?
You'll need to store the container registry credentials in your Seqera Platform account.
If you launch the Nextflow pipeline with Seqera, there's nothing else to do (other than using a compute environment with Wave support enabled).
If you're launching the pipeline with the Nextflow command line, provide your Seqera Platform access token in the Nextflow configuration file adding the setting tower.accessToken='<YOUR TOKEN>'
.