feat: Add Docker Compose profiles for auth and payment services

This commit is contained in:
A'zamov Samandar
2025-04-19 15:12:13 +05:00
parent dd0da49eb9
commit 291f31b09b
3 changed files with 39 additions and 0 deletions

14
Makefile Normal file
View File

@@ -0,0 +1,14 @@
up-auth:
docker compose --profile auth up -d
down-auth:
docker compose --profile auth down
up-payment:
docker compose --profile payment up -d
down-payment:
docker compose --profile payment down
down-all:
docker compose --profile payment --profile auth down