How to keep file sync'd in OpenShift?

后端 未结 3 461
面向向阳花
面向向阳花 2021-02-10 19:43

For OpenShift:

I created a test directory in ~ app-root/repo/data. I also have locally \'myapp\'/data directory. I can push up to OpenShift wi

3条回答
  •  终归单人心
    2021-02-10 19:47

    If you can ssh into the machine, you should be able to read or write files using scp.

    Simply placing new files within your Openshift gear's ~/app-root/repo/ folder will not cause the files to be included (checked in to) your revision control system. Normally, you should be using git commit and git push to make the majority of the changes to your app locally, then follow up by pushing those changes to your OpenShift gear.

    If your app needs on-disk storage, or access to additional content such as secret tokens and keys that you would prefer to keep out of your source code - you can place this content in your ~/app-root/data folder. This directory is not effected by deployments, and has been set aside for your app's local disk storage needs.

提交回复
热议问题