add_dockerfile {rcompendium} | R Documentation |
Create a Dockerfile
Description
This function creates a Dockerfile
at the root of the project based on a
template. The Docker image is based on
rocker/rstudio. The whole project
will be copied in the image and R packages will be installed (using
renv::restore()
or remotes::install_deps()
).
In addition a .dockerignore
file is added to ignore some files/folders
while building the image.
User can customize this Dockerfile
(e.g. system dependencies). He/she
can also use a different default Docker image (i.e. tidyverse
, verse
,
geospatial
, etc.). For more information:
https://github.com/rocker-org/rocker-versioned2
By default the versions of R and renv
(if applicable) specified in the
Dockerfile
are the same as the local system.
Once the project is ready to be released, user must build the Docker image by
running: docker build -t "image_name" .
Then to run a container, user must run:
docker run --rm -p 127.0.0.1:8787:8787 -e DISABLE_AUTH=true image_name
A new instance of RStudio Server is available on the Web browser at the URL:
127.0.0.1:8787
.
Usage
add_dockerfile(
given = NULL,
family = NULL,
email = NULL,
open = TRUE,
overwrite = FALSE,
quiet = FALSE
)
Arguments
given |
A character of length 1. The given name of the project maintainer. |
family |
A character of length 1. The family name of the project maintainer. |
email |
A character of length 1. The email address of the project maintainer. |
open |
A logical value. If |
overwrite |
A logical value. If this file is already present and
|
quiet |
A logical value. If |
Value
No return value.
See Also
Other create files:
add_citation()
,
add_code_of_conduct()
,
add_compendium()
,
add_contributing()
,
add_description()
,
add_license()
,
add_makefile()
,
add_package_doc()
,
add_readme_rmd()
,
add_renv()
,
add_testthat()
,
add_vignette()
Examples
## Not run:
add_dockerfile()
## End(Not run)