Skip to content

Commit 8c86567

Browse files
committed
chore: update docker compose command
1 parent e121a5b commit 8c86567

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
init_broker:
44
@echo command | date
55
@echo Initializing Kafka broker
6-
docker-compose -f docker-compose.yml up -d
6+
docker compose -f docker-compose.yml up -d
77

88
shutdown_broker:
99
@echo command | date
1010
@echo Shutting down kafka broker
11-
docker-compose -f docker-compose.yml down
11+
docker compose -f docker-compose.yml down
1212

1313
restore:
1414
dotnet restore KafkaFlow.sln
@@ -26,5 +26,5 @@ integration_tests:
2626
@echo command | date
2727
make init_broker
2828
@echo Running integration tests
29-
dotnet test tests/KafkaFlow.IntegrationTests/KafkaFlow.IntegrationTests.csproj -c Release --framework netcoreapp3.1 --logger "console;verbosity=detailed"
29+
dotnet test tests/KafkaFlow.IntegrationTests/KafkaFlow.IntegrationTests.csproj -c Release --logger "console;verbosity=detailed"
3030
make shutdown_broker

docker-compose.yml

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: '3'
2-
31
services:
42
zookeeper:
53
image: confluentinc/cp-zookeeper:7.2.1

0 commit comments

Comments
 (0)