available: List available images with tags for Bioconductor

Description Usage Arguments Details Value Examples

View source: R/manager.R

Description

List available images with tags for Bioconductor

Usage

1
available(pattern, organization = "bioconductor", deprecated = FALSE)

Arguments

pattern

'character(1)', a pattern to filter the names of images.

organization

'character(1)', organization whose list of images hosted on dockerhub will be displayed. Default is 'bioconductor'.

deprecated

'logical(1)', TRUE will show deprecated images.

Details

Return a tibble of all the available docker images in an organization. The tibble will show the Image name, description, tags, repository-name, pull-count. By default this function is designed to show the available images under the Bioconductor organization in dockerhub.

Value

'tibble' of available images

Examples

1
2
3
4
5
6
7
res <- available()

res <- available("bioconductor_docker")

res <- available(pattern = "rstudio", organization = "rocker")

res <- available(deprecated = TRUE)

BiocDockerManager documentation built on March 21, 2021, 6 p.m.