Download Application files from Bluemix

半城伤御伤魂 提交于 2019-12-22 22:25:14

问题


Is there a way to download the content of an application running on Bluemix after staging it?


回答1:


Bluemix uses cloud foundry (CF) to manage the platform. By default the CF CLI does not have the capability to download the Application files from Bluemix. On CF CLI version 6.10.0 or higher, we can install a download plugin to retrieve these files from Bluemix locally.

To install the plugin follow the below commands: $ cf add-plugin-repo CF-Community http://plugins.cloudfoundry.org/ $ cf install-plugin cf-download -r CF-Community

Once the plugin is installed you can download the files using the command
$ cf download <<APP_NAME>> [path]

Eg: $ cf download myapp



来源:https://stackoverflow.com/questions/37850279/download-application-files-from-bluemix

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!