Files
django-core-base/deployments/Makefile
minguezsanzjuanjose 428b745700
All checks were successful
DEPLOY_MULTI_BRACH/pipeline/head This commit looks good
chore: add Makefile to auto-create saas_network before docker compose up
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-18 13:25:18 +02:00

16 lines
252 B
Makefile

NETWORK = saas_network
.PHONY: network up down logs
network:
docker network inspect $(NETWORK) >/dev/null 2>&1 || docker network create $(NETWORK)
up: network
docker compose up --build -d
down:
docker compose down
logs:
docker compose logs -f