We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eaabddd commit c8b12fdCopy full SHA for c8b12fd
test
@@ -1,5 +1,10 @@
1
#!/usr/bin/env bash
2
3
+if ! docker images | grep -q "regtest"; then
4
+ echo "Image not found. Building image..."
5
+ docker build -t regtest docker-bitcoin-core/.
6
+fi
7
+
8
echo "Starting container..."
9
10
CONTAINTER_HASH=$(docker run \
0 commit comments