https://github.com/wch/harbor
An R package for controlling docker containers on local and remote hosts
https://github.com/wch/harbor
Last synced: about 1 month 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 (over 10 years ago)
- Default Branch: master
- Last Pushed: 2018-01-05T09:56:36.000Z (over 7 years ago)
- Last Synced: 2025-03-16T02:47:17.259Z (about 1 month ago)
- Language: R
- Size: 46.9 KB
- Stars: 102
- Watchers: 11
- 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
---
[](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"))
```