Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wch/harbor

An R package for controlling docker containers on local and remote hosts
https://github.com/wch/harbor

Last synced: 17 days ago
JSON representation

An R package for controlling docker containers on local and remote hosts

Awesome Lists containing this project

README

        

---
title: "harbor"
output: github_document
---
[![Travis-CI Build Status](https://travis-ci.org/hrbrmstr/harbor.svg?branch=master)](https://travis-ci.org/hrbrmstr/harbor)

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```

Tools to Manage 'Docker' Images and Containers

```{r}
library(harbor)

docker_pull(image="hello-world")

res <- docker_run(image = "hello-world", capture_text = TRUE)

cat(attr(res, "output"))
```