mirror of
https://github.com/logos-storage/codex-factory.git
synced 2026-01-03 13:33:06 +00:00
17 lines
549 B
Bash
17 lines
549 B
Bash
|
|
#!/bin/bash
|
||
|
|
NAME=swarm-test-blockchain
|
||
|
|
CONTAINER_IN_DOCKER=`docker container ls -qaf name=$NAME`
|
||
|
|
|
||
|
|
if [ -z "$CONTAINER_IN_DOCKER" ]; then
|
||
|
|
# necessary "-b 1" because anyway the Bee throws Error: waiting backend sync: Post "http://swarm-test-blockchain:9545": EOF
|
||
|
|
docker run \
|
||
|
|
-p 127.0.0.1:9545:9545 \
|
||
|
|
--network swarm-test-network \
|
||
|
|
--name swarm-test-blockchain -d \
|
||
|
|
trufflesuite/ganache-cli ganache-cli \
|
||
|
|
-d -i 4020 -h 0.0.0.0 -p 9545 \
|
||
|
|
-b 1 \
|
||
|
|
--db swarm-testchain --gasLimit 6721975
|
||
|
|
else
|
||
|
|
docker start $NAME
|
||
|
|
fi
|