Skip to content

Commit

Permalink
feat: improve Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
raphael0202 committed Sep 22, 2023
1 parent 9529b52 commit 2f7fa16
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,16 @@ livecheck:
build:
@echo "🥫 building docker (for dev)"
docker-compose build


up:
ifdef service
${DOCKER_COMPOSE} up -d ${service} 2>&1
else
${DOCKER_COMPOSE} up -d 2>&1
endif


down:
@echo "🥫 Bringing down containers …"
${DOCKER_COMPOSE} down

0 comments on commit 2f7fa16

Please sign in to comment.