Tools to Work with the 'Splash' JavaScript Rendering Service in R
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.1 KiB

% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/docker-splash.R
\name{start_splash}
\alias{start_splash}
\title{Start a Splash server Docker container}
\usage{
start_splash(tag = "3.2", container_name = "splashr", remove = FALSE)
}
\arguments{
\item{tag}{Splash Docker image tag to start}
\item{container_name}{naem for the container. Defaults to "`splashr`".}
\item{remove}{remove the Splash container instance after it's stopped?
Defaults to `FALSE`.}
}
\value{
`stevedor` container object
}
\description{
7 years ago
If using this in an automation context, you should consider adding a
`Sys.sleep(3)` (or higher) after starting the docker container.
}
\note{
you need Docker running on your system and have pulled the container with
[install_splash] for this to work. You should save the resultant
object for use in [stop_splash] otherwise you'll have to kill it from the
command line interface.
}
\examples{
\dontrun{
install_splash()
splash_container <- start_splash()
stop_splash(splash_container)
}
}
7 years ago
\seealso{
Other splash_docker_helpers: \code{\link{install_splash}},
\code{\link{stop_splash}}
}
6 years ago
\concept{splash_docker_helpers}