version: Get version of bioconductor docker image

View source: R/manager.R

versionR Documentation

Get version of bioconductor docker image

Description

Get version of bioconductor docker image

Usage

version(repository = "bioconductor/bioconductor_docker", tag)

Arguments

repository

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

tag

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

Details

The version of the images provided by Bioconductor are unique. They are represented by 'x.y.z' where, the 'x.y' represent the version of Bioconductor and the '.z' represents the version of the Dockerfile used to build the Docker image. This is especially useful in terms of reproducibility and tracking changes when using the Docker images provided by Bioconductor.

Value

'character' vector representing the version number.

Examples


do_it <- BiocDockerManager:::.is_docker_installed()

if (do_it) {
    BiocDockerManager::version(
        "bioconductor/bioconductor_docker",
        tag = "latest"
    )

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


nturaga/BiocDockerManager documentation built on Aug. 31, 2022, 3:21 p.m.