valid {BiocDockerManager} | R Documentation |
Check if all images available are valid
valid(repository = "bioconductor/bioconductor_docker", tag)
repository |
'character(1)', repository name of the docker image. |
tag |
'character(1)', tag of the docker image. |
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.
tibble with the repository and tag of image which needs to be updated.
do_it <- BiocDockerManager:::.is_docker_installed() if (do_it) { BiocDockerManager::valid() BiocDockerManager::valid( "bioconductor/bioconductor_docker", tag = "devel" ) }