valid: Check if all images available are valid

Description Usage Arguments Details Value Examples

View source: R/manager.R

Description

Check if all images available are valid

Usage

1
valid(repository = "bioconductor/bioconductor_docker", tag)

Arguments

repository

'character(1)', repository name of the docker image.

tag

'character(1)', tag of the docker image.

Details

Check if the image is valid, i.e to see if the image is up to date with the image hosted by bioconductor on the Dockerhub organization page.

Value

tibble with the repository and tag of image which needs to be updated.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
do_it <- BiocDockerManager:::.is_docker_installed()

if (do_it) {

    BiocDockerManager::valid()

    BiocDockerManager::valid(
        "bioconductor/bioconductor_docker",
        tag = "devel"
    )
}

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