Your are here right now. You can get here by simply running:
docker run inwt/[<image>]
Expects either a package with an exported function 'main', or a script in the working directory called 'main.R'. A package is always favored. If neither is found the help is displayed.
docker run -v $(pwd):/app/ inwt/[<image>] [main|]
Run R CMD check on a package by:
docker run -v $(pwd):/app/ inwt/[<image>] check
This command assumes that the package root is your current working directory. You can also do
docker run -v <path-to-package>:/app/ inwt/[<image>] check
Runs tests in a package:
docker run -v $(pwd):/app/ inwt/[<image>] test
Options:
-v <host-dir>:<container-dir>:ro' means we make available
<host-dir> as read only directory to the container. Inside the container you
find the contents at <container-dir>. In the usage examples above we mount
$(pwd) (current working directory) to /app/ (working directory inside the
container).You can edit this help at https://github.com/INWTlab/r-docker. So do not complain, improve it instead. Compile this file using:
Rscript -e 'knitr::pandoc("README.md", format = "plain")'
Content type
Image
Digest
sha256:7a055bc8e…
Size
696.5 MB
Last updated
4 days ago
docker pull inwt/r-base