Allows accessing Docker SDK from R via the Docker Python SDK using the reticulate package. This is a very thin wrapper and relies on the user to understand how the Python SDK works and how the reticulate package is used to interface with python.
This is the docker instance corresponding to docker module of the docker Python SDK.
docker
An object of class python.builtin.module
(inherits from python.builtin.object
) of length 2.
# NOT RUN { library(docker) client <- docker$from_env() client$containers$run('alpine', 'echo "Hello World!"') # }