https://github.com/paciorek/future-kubernetes-docker
A Docker container for use in a Kubernetes cluster with the R future package.
https://github.com/paciorek/future-kubernetes-docker
Last synced: 4 months ago
JSON representation
A Docker container for use in a Kubernetes cluster with the R future package.
- Host: GitHub
- URL: https://github.com/paciorek/future-kubernetes-docker
- Owner: paciorek
- Created: 2020-03-07T01:02:54.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-19T01:08:38.000Z (over 3 years ago)
- Last Synced: 2024-08-13T07:13:35.453Z (8 months ago)
- Language: R
- Size: 6.84 KB
- Stars: 6
- Watchers: 3
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - paciorek/future-kubernetes-docker - A Docker container for use in a Kubernetes cluster with the R future package. (R)
README
# future-kubernetes-docker
A Docker container for use in a Kubernetes cluster with the R future package. This Docker container image is available on Docker Hub as `paciorek/future-kubernetes`.
The future package provides for parallel computation in R on one or more machines.
-
-This Docker container is used by [this helm chart](https://github.com/paciorek/future-helm-chart) as the base container for the pods in a Kubernetes cluster providing access to the R future package via RStudio or R.
## Creating this Docker container on Docker Hub
The container image was created on Docker Hub like this:
```
docker login --username=paciorek
docker build -t future .
docker tag future paciorek/future-kubernetes:0.5
docker push paciorek/future-kubernetes:0.5
```## Acknowledgments
Thanks to the [Rocker](https://github.com/rocker-org/rocker) team for the container on which this is based.