登录 注册
当前位置:主页 > 资源下载 > 5 > 在Google Cloud Run上部署Shiny应用程序:shiny-cloudrun-demo

在Google Cloud Run上部署Shiny应用程序:shiny-cloudrun-demo

  • 更新:2024-12-12 14:47:02
  • 大小:2KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

在Google Cloud Run上运行Shiny应用程序 PROJECTID=$(gcloud config get-value project) 在本地构建映像并推送到Google注册表 docker build . -t gcr.io/$PROJECTID/shinyrun # optional, test locally # docker run --rm -p 8080:8080 gcr.io/$PROJECTID/shinyrun:latest gcloud auth configure-docker docker push gcr.io/$PROJECTID/shinyrun 或者,利用Googld构建来构建图像 gcloud builds submit --tag gcr.io/$PROJECTID/shinyrun 部署到Google Cloud Run gcloud