mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-10 14:03:46 +00:00
8 lines
279 B
Bash
Executable file
8 lines
279 B
Bash
Executable file
#!/bin/sh
|
|
set -exu
|
|
|
|
export MEMBER_NODE_VOLUME=${MEMBER_NODE_VOLUME:-"geth-data-member"}
|
|
export MEMBER_NODE_PORT=${MEMBER_NODE_PORT:-60605}
|
|
export SIGNER_NODE_IP=${SIGNER_NODE_IP:-"172.29.0.103"}
|
|
|
|
docker-compose -f docker-compose-add-member.yml --profile settlement up -d --build
|