14 lines
265 B
Makefile
14 lines
265 B
Makefile
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
|