1

我想将我的图像文件夹直接上传到我的 OpenShift 服务器,而不是将图像保存在我的源代码文件中。

我也有几个与公司有关的罐子。如何将它们安装到 OpenShift 3 服务器的 m2 Maven 存储库?

Reference
=========
1)mounted saperately as per your clarification-
/dev/xvdbe     999320    4424    926084   1% /imgs
2)I have done the Recreate
3)I verified oc rsh
sh-4.2$ cd /imgs                                                                                                                                                    
sh-4.2$ ls                                                                                                                                                          
images-static  lost+found                                                                                                                                           
sh-4.2$ cd images-static                                                                                                                                            
sh-4.2$ ls                                                                                                                                                          
beads  gemstones  hooks  jcarousel  necklace  necklaces  pendants                                                                                                   
sh-4.2$ cd necklaces                                                                                                                                                
sh-4.2$ ls                                                                                                                                                          
1497330344375_.jpg    
1497330365931.jpg                                         
1497330357394.jpg  
premadeDesigns 
modifiableDesigns 
4)I am accessing my images with URL 
http://openshiftLink.com/imgs/images-static/necklaces/                                                                                  /   1497330344375.jpg 
is this the right way to access persistence volumes   
4

1 回答 1

0

如果您将持久卷附加到应用程序使用的容器,则可以使用oc rsync将图像等文件复制到持久卷。

另一种选择是使用二进制输入构建,而不是从 Git 存储库中提取源代码。这样就更容易使用不属于 Git 存储库的构建文件进行推送。这可以是图像,也可以是预编译的二进制工件。

有关二进制输入构建的详细信息,请参见:

于 2017-12-14T09:43:10.747 回答