Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/wch/harbor
- Owner: wch
- Created: 2014-10-22T03:38:22.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2018-01-05T09:56:36.000Z (almost 7 years ago)
- Last Synced: 2024-10-11T18:21:30.599Z (about 1 month ago)
- Language: R
- Size: 46.9 KB
- Stars: 101
- Watchers: 12
- Forks: 8
- Open Issues: 7
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
- jimsghstars - wch/harbor - An R package for controlling docker containers on local and remote hosts (R)
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"))
```