Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
R
 
 
man
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

babelwhale: talk to docker and singularity from R

CRAN_Status_Badge

Specify docker or singularity

library(babelwhale)
config <- create_docker_config()
set_default_config(config)

Run a command in a container

run("alpine", "echo", c("hello"))
## $status
## [1] 0
## 
## $stdout
## [1] "hello\n"
## 
## $stderr
## [1] ""
## 
## $timeout
## [1] FALSE

Get a file from a container

read_file("alpine", "/etc/alpine-release")
## [1] "3.10.0"

Latest changes

Check out news(package = "dynutils") or NEWS.md for a full list of changes.

Recent changes in babelwhale 1.0.1

  • Fix issue with permanent saving of config.

Recent changes in babelwhale 1.0.0 (28-06-2019)

  • Release of babelwhale, a package to run docker and singularity containers from R.

About

Talking to Docker and Singularity containers

Resources

Releases

No releases published

Packages

No packages published

Languages

You can’t perform that action at this time.