How to make changes to frontend without rebuilding the entire application and losing data? #6642
-
I have downloaded version 10, made few changes to the source code and using the local development guide successfully deployed the application to my server. The question now is that though, if i want to make changes on the frontend without losing data and reinstall all the time ( Looking for suggestions. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
This entirely depends on the contents of your docker-compose.yaml file. If you need the DB to persist, then you have to either use a persistent volume, or bind /var/lib/postgresql/data to a local folder. |
Beta Was this translation helpful? Give feedback.
-
Closing this since the project is cancelled. |
Beta Was this translation helpful? Give feedback.
This entirely depends on the contents of your docker-compose.yaml file. If you need the DB to persist, then you have to either use a persistent volume, or bind /var/lib/postgresql/data to a local folder.