What is the correct way to test a client's database using the same repository revision that is currently in production? #663
-
For example, suppose a client's Odoo instance uses Doodba, but the base code hasn't been updated in a long time and a bug appears. I clone the project repository (Doodba) and restore a recent database backup, but since the code I just downloaded is fresh and up to date, the bug no longer appears. How can I ensure I'm testing with the exact same code revision that's currently deployed in production? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You should have such image uploaded to a registry, and do |
Beta Was this translation helpful? Give feedback.
You should have such image uploaded to a registry, and do
docker compose pull
command to get it. Anyway, the goal is always going to the latest version.