We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db094c5 commit db3ad29Copy full SHA for db3ad29
scripts/start-test-dbs.sh
@@ -1,6 +1,6 @@
1
#!/usr/bin/env bash
2
3
-docker network create -d bridge spi_test
+docker network create -d bridge spi_test 2> /dev/null
4
5
for port in {0..7}; do
6
docker run --name "spi_test_$port" \
scripts/stop-test-dbs.sh
@@ -4,4 +4,4 @@ for c in $(docker ps --all --format "{{.Names}}" | grep spi_test_); do
docker rm -f "$c"
done
7
-docker network rm spi_test
+docker network rm spi_test 2> /dev/null || true
0 commit comments