我想将我的images文件夹直接上传到我的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
答案 0 :(得分:0)
如果您的应用程序使用的容器附加了持久卷,则可以使用oc rsync
将图像等文件复制到持久卷。
另一个选择是使用二进制输入构建而不是从Git存储库中提取源代码。这样就可以更容易地使用不属于Git存储库的构建文件。这可能是图像,也可能是预编译的二进制工件。
有关二进制输入版本的详细信息,请访问: