Skip to content

Commit

Permalink
split commands in makefiles (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lior Rutenberg committed Sep 11, 2023
1 parent 195b39d commit 0996b65
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.idea/
bin/
10 changes: 7 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ docker-build:
@echo "Building Docker image..."
docker build -t $(DOCKER_IMAGE) .

docker-demo:
@echo "Running docker compose demo"
docker-compose up --build
docker-servers:
@echo "Running servers in docker demo"
docker-compose up --build server1 server2 server3 server4

docker-client:
@echo "Running client in docker demo"
docker-compose up --build client

0 comments on commit 0996b65

Please sign in to comment.