Replies: 1 comment 17 replies
-
why do you need to mount anything during docker build? |
Beta Was this translation helpful? Give feedback.
17 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We are using Pimcore 11.x, which has been deployed on Kubernetes. Our setup includes persistent volume paths mounted as an NFS file system, which are as follows:
Additionally, we use S3 Flysystem paths for the following:
We have a Docker CI/CD setup. During initial deployment, running /vendor/bin/pimcore-install with the skeleton doesn't cause issues while Dockerizing the application. However, upgrading Pimcore is challenging. For example:
Installing a new bundle and Dockerizing it for deployment to Kubernetes.
Mounting S3 Flysystem paths during the Docker build process is feasible, but mounting the NFS file system during the same process is not.
Question:
What steps should we follow to upgrade Pimcore while using mounted S3 Flysystem paths during the Docker build process, particularly for:
A detailed explanation of the steps would be highly helpful to upgrade without data loss.
Beta Was this translation helpful? Give feedback.
All reactions