Skip to content

Commit

Permalink
fix: docker compose issue
Browse files Browse the repository at this point in the history
  • Loading branch information
joanestebanr committed Aug 22, 2024
1 parent 3a62562 commit a5e7d16
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DOCKERCOMPOSE := docker-compose -f docker-compose.yml
DOCKERCOMPOSE := docker compose -f docker-compose.yml
DOCKERCOMPOSEAPPSEQ := zkevm-sequencer
DOCKERCOMPOSEAPPSEQV1TOV2 := zkevm-sequencer-v1tov2
DOCKERCOMPOSEAPPSEQSENDER := zkevm-sequence-sender
Expand Down Expand Up @@ -113,8 +113,8 @@ STOPMETRICS := $(DOCKERCOMPOSE) stop $(DOCKERCOMPOSEMETRICS) && $(DOCKERCOMPOSE)

STOP := $(DOCKERCOMPOSE) down --remove-orphans

RUNDACDB := docker-compose up -d zkevm-data-node-db
STOPDACDB := docker-compose stop zkevm-data-node-db && docker-compose rm -f zkevm-data-node-db
RUNDACDB := docker compose up -d zkevm-data-node-db
STOPDACDB := docker compose stop zkevm-data-node-db && docker compose rm -f zkevm-data-node-db

.PHONY: test-full-non-e2e
test-full-non-e2e: stop ## Runs non-e2e tests checking race conditions
Expand Down

0 comments on commit a5e7d16

Please sign in to comment.