This commit is contained in:
Azamov Samandar
2025-06-01 09:48:20 +00:00
parent 7ac2613c05
commit d5c03acc6d
2 changed files with 19 additions and 3 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
FILE = dc-front.yml
pull:
git fetch
git merge origin/main
down:
docker compose -f $(FILE) down
up:
docker compose -f $(FILE) up -d --build
deploy: pull down up