Description Usage Arguments Details Value Examples
Install a docker image on your local machine
1 |
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
1 2 3 4 5 6 7 8 | 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.