From e38bb66babf3d5bf52df6f4a0a11947bb3e3b820 Mon Sep 17 00:00:00 2001 From: Igor Matsak <42873523+matsakiv@users.noreply.github.com> Date: Wed, 17 Jan 2024 18:42:20 +0300 Subject: [PATCH] Fix run-operator and run-dsn rules (#16) --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b68d7bb..6b6fe34 100644 --- a/Makefile +++ b/Makefile @@ -56,7 +56,7 @@ run-operator: $(MAKE) build-operator $(MAKE) image-operator OCTEZ_TAG=$(OCTEZ_TAG) OCTEZ_PROTO=$(OCTEZ_PROTO) docker stop dsn-operator || true - docker volume rm dsn-operator + docker volume rm dsn-operator || true docker run --rm -it \ --name dsn-operator \ --entrypoint=/bin/sh \ @@ -72,6 +72,7 @@ run-sequencer: run-dsn: rm -rf ./db + cargo build --bin launcher ./target/debug/launcher --id 1 --log-level 2 & ./target/debug/launcher --id 2 --log-level 0 & ./target/debug/launcher --id 3 --log-level 0 &