This commit is contained in:
2025-05-18 01:00:52 -05:00
parent 2e2997afb6
commit b572dfe002
4 changed files with 29 additions and 5 deletions

View File

@ -28,6 +28,14 @@ up:
$(DOCKER_COMPOSE) up --build -d
@$(MAKE) wait
up-nobuild:
@if [ ! -f $(ENV_FILE) ]; then \
echo "[⚙] Generating .env from example..."; \
cp $(ENV_EXAMPLE) $(ENV_FILE); \
fi
$(DOCKER_COMPOSE) up -d
@$(MAKE) wait
down:
$(DOCKER_COMPOSE) down