Skip to content

Commit

Permalink
changed Makefile to start and stop with both docker compose files
Browse files Browse the repository at this point in the history
  • Loading branch information
sadiqkhoja committed Dec 6, 2024
1 parent 97f2bb9 commit 9696780
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
docker-compose-dev := docker compose --profile central -f docker-compose.yml -f docker-compose.dev.yml

.PHONY: dev
dev:
docker compose --profile central -f docker-compose.yml -f docker-compose.dev.yml up -d
$(docker-compose-dev) up -d

.PHONY: stop
stop:
docker compose stop
$(docker-compose-dev) stop

0 comments on commit 9696780

Please sign in to comment.