dawdle/Makefile
pwgen2155 41d72092a0
All checks were successful
continuous-integration/drone/push Build is passing
fix: allow for renaming and proper deletion
2024-03-21 21:11:38 +11:00

13 lines
241 B
Makefile

SHELL: /bin/bash
phony: dev
dev:
@docker compose -f docker-compose.yml -f docker-compose.dev.yml up -d --build
phony: prod
prod:
@docker compose -f docker-compose.yml -f docker-compose.prod.yml up -d --build
down:
@docker compose down