-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (21 loc) · 717 Bytes
/
Makefile
File metadata and controls
28 lines (21 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
help:
@echo "==== Help ==="
@echo "to create a network run make network"
@echo "to build the project use make build"
@echo "to up the project use make up"
@echo "to build and run the project use make build-run"
@echo "to stop the detector and the generator use make down"
@echo "to stop the kafka cluster use make down-kafka"
@echo "to delete the network use make delete-net"
network:
docker network create kafka-net-fraud
build:
docker-compose -f docker-compose.kafka.yml logs -f broker | grep "started"
up:
docker-compose up -d
down:
docker-compose down
down-kafka:
docker-compose -f docker-compose.kafka.tml down
delete-net:
docker network rm kafka-net-fraud