- container_id
The name of the container, usually the repository name on dockerhub.
- command
Character scalar, the command to run. If you are
running .bat or .cmd files on Windows, make sure you read the
'Batch files' section in the process manual page.
- args
Character vector, arguments to the command. Any files or
directories that should be mounted must be named "file" (see example).
- wd
Local working directory to run command. If specified, the working
directory will be mounted to the docker container.
- wd_in_container
Working directory to run command in
the container. Defaults to the working directory mounted to the container
(wd).
- environment_variables
A character vector of environment variables. Format: c("ENVVAR=VALUE").
- debug
If TRUE, a command will be printed that the user can execute to enter the container.
- verbose
Whether or not to print output
- stdout
What to do with standard output of the command. Default ("|") means to include it as an item in the results list.
If it is the empty string (""), then the child process inherits the standard output stream of the R process.
If it is a string other than "|" and "", then it is taken as a file name and the output is redirected to this file.
- stderr
What to do with standard error of the command. Default ("|") means to include it as an item in the results list.
If it is the empty string (""), then the child process inherits the standard error stream of the R process.
If it is a string other than "|" and "", then it is taken as a file name and the standard error is redirected to this file.