From 2718c8ddb2ab49087e7215faf611567d8d2d02db Mon Sep 17 00:00:00 2001 From: anxi0uz Date: Wed, 25 Mar 2026 21:31:32 +0500 Subject: [PATCH] added makefile --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6f6bf65 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +.PHONY: up build-up down deploy + +up: + podman-compose up -d + +build-up: + podman-compose build && podman-compose up -d + +down: + podman-compose down + +deploy: + podman-compose down && git pull && podman-compose build && podman-compose up -d