Skip to content

Commit

Permalink
Fix docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
streamer45 committed Aug 15, 2024
1 parent e15d468 commit f7dff57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ endif
start-mm: ## start MM server
ifeq (${CI}, true)
@$(INFO) starting up MM server...
docker-compose -p mmserver -f ./build/test/docker-compose.yaml up -d
docker compose -p mmserver -f ./build/test/docker-compose.yaml up -d
else
@$(INFO) skipping start-mm target, not on CI
endif
Expand All @@ -338,7 +338,7 @@ endif
stop-mm: ## stop MM server
ifeq (${CI}, true)
@$(INFO) stopping up MM server...
docker-compose -p mmserver -f ./build/test/docker-compose.yaml down
docker compose -p mmserver -f ./build/test/docker-compose.yaml down
else
@$(INFO) skipping stop-mm target, not on CI
endif
Expand Down

0 comments on commit f7dff57

Please sign in to comment.