From 37a43e402e19b121fcb312754db5b7e542026259 Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Mon, 10 Mar 2025 02:57:44 -0400 Subject: [PATCH] [UPD] Makefile: example to update an instance --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Makefile b/Makefile index 3a45cf8..41dbc27 100644 --- a/Makefile +++ b/Makefile @@ -30,6 +30,18 @@ else endif endif + +# Example for update +.PHONY: custom_run_example +custom_run_example: + ./run.sh -d example_prod + +.PHONY: custom_update_example +custom_update_example: + ./script/database/db_restore.py --database example_prod --image image_name_to_restore + ./script/addons/update_addons_all.sh example_prod + ./script/addons/update_prod_to_dev.sh example_prod + ######### # RUN # #########