14 lines
165 B
Makefile
14 lines
165 B
Makefile
.PHONY: up down logs status
|
|
|
|
up:
|
|
bash start-db.sh
|
|
|
|
down:
|
|
bash stop-db.sh
|
|
|
|
logs:
|
|
docker compose logs -f postgres
|
|
|
|
status:
|
|
docker ps --filter name=caspos-postgres
|