https://github.com/petegordon/RCloudRun
Show the use of Google Cloud Run with R/Plumber in Docker.
https://github.com/petegordon/RCloudRun
Last synced: 4 months ago
JSON representation
Show the use of Google Cloud Run with R/Plumber in Docker.
- Host: GitHub
- URL: https://github.com/petegordon/RCloudRun
- Owner: petegordon
- Created: 2020-10-13T18:18:09.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2020-10-13T18:27:26.000Z (over 4 years ago)
- Last Synced: 2024-08-13T07:13:33.755Z (8 months ago)
- Language: R
- Size: 1000 Bytes
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - petegordon/RCloudRun - Show the use of Google Cloud Run with R/Plumber in Docker. (R)
README
# RCloudRun
Show the use of Google Cloud Run with R/Plumber in Docker.Thanks to https://medium.com/tmobile-tech/using-docker-to-deploy-an-r-plumber-api-863ccf91516d
This example shows using Docker, R, Plumber with Google Cloud Run.
Start with a standard Google Cloud Run example. I recommend the Python example. This will ensure that you have the Cloud SDK installed and are able to use it.
Follow the instructions here...
https://cloud.google.com/run/docs/quickstarts/build-and-deployThen proceed to Deploy this R/Plumber Cloud Run instance.
```
gcloud builds submit --tag gcr.io//rcloudrun_plumber
``````
gcloud run deploy --image gcr.io//rcloudrun_plumber --platform managed
```