Skip to content

Commit 43014a4

Browse files
committed
fix(makefile): Avoid triggering errors if no container is active
1 parent d88f538 commit 43014a4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@ logs:
3333

3434
# Stop all services
3535
down:
36-
cd contrib && docker compose -f docker-compose.dev.yml down
37-
docker rm -f indexer-service tap-agent gateway 2>/dev/null || true
36+
cd contrib && docker compose -f docker-compose.dev.yml down || true
37+
cd contrib/local-network && docker compose down || true
38+
docker rm -f indexer-service tap-agent gateway block-oracle indexer-agent graph-node redpanda tap-aggregator tap-escrow-manager 2>/dev/null || true
3839

3940

4041
# Cargo commands

0 commit comments

Comments
 (0)