Stop a running a Splash server Docker container

stop_splash(splash_container)

Arguments

splash_container

Docker `container` object created by [start_splash()]

Note

you need Docker running on your system and have pulled the container with [install_splash()] and started the Splash container with [start_splash()] for this to work. You will need the `container` object from [start_splash()] for this to work.

See also

Other splash_docker_helpers: install_splash(), start_splash()

Examples

# NOT RUN {
install_splash()
splash_container <- start_splash()
stop_splash(splash_container)
# }