-
|
Hey everyone, like mentionend in the title, I'm currently running a fairly old version and would like to tackle the update, before more stuff gets changed. Regarding the cahnges in the Docker compose file, would you suggest pulling the latest image, waiting for everything to migrate, check for everything running well and then shutting the containers down and afterwards deleting the stuff from the compose? Anything else I would need to do manually? My current compose looks like this: .env-file: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
|
I started doing the migrations step-by-step. For this I created a new environment variable for the tag of the two container-instances ${VERSION_TAG}. This way I only need to update it in the .env-file and a up and down cylce. |
Beta Was this translation helpful? Give feedback.
-
|
It is not recommended to upgrade and migrate step by step according to each version. Back up the data, delete the container volume directly, rebuild the data volume, and then use the new docker-compose.yml to directly start an empty app and import the data. This is convenient and fast. |
Beta Was this translation helpful? Give feedback.
I started doing the migrations step-by-step. For this I created a new environment variable for the tag of the two container-instances ${VERSION_TAG}. This way I only need to update it in the .env-file and a up and down cylce.