-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
28 lines (21 loc) · 663 Bytes
/
makefile
File metadata and controls
28 lines (21 loc) · 663 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
.PHONY: help build up down logs restart clean
help:
@echo "Ralio (Safe Agentic Payment) - Make Commands"
@echo "======================================================="
@echo "make build - Build Docker images"
@echo "make up - Start all services"
@echo "make down - Stop all services"
@echo "make logs - View logs from all services"
@echo "make restart - Restart all services"
@echo "make clean - Remove containers, volumes, and images"
build:
docker compose build
up:
docker compose up -d --build
down:
docker compose down
logs:
docker compose logs -f
restart: down up
clean:
docker compose down -v --rmi all