install | R Documentation |
Install a docker image on your local machine
install(repository, tag, quiet = FALSE, all_tags = FALSE)
repository |
'character(1)', repository name of the docker image. |
tag |
'character(1)', tag of the docker image. |
quiet |
'logical(1)', if TRUE suppress verbose output generated from the download. |
all_tags |
'logical(1)', pull all the tags of the image |
The function works similar to the 'docker pull' command. It downloads a docker image from Dockerhub on to the local machine, in a place which the docker engine knows about, building your local registry of docker images.
invisible
do_it <- BiocDockerManager:::.is_docker_installed()
if (do_it) {
BiocDockerManager::install(
repository = "bioconductor/bioconductor_docker",
tag = "latest"
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.