Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Setup a minimal local quorum network with 3 nodes using raft consensus algorithm without tx manager (does not support private transactions).
Build a local Quorum network based on the 7-nodes example and simplified to 3 nodes with only Raft consensus without tx manager.
run: docker-compose up -d
3 Docker Containers
- quorum_raft_node1_1
- RPC Port: 22000
- WS Port: 23000
- quorum_raft_node2_1
- RPC Port: 22001
- WS Port: 23001
- quorum_raft_node3_1
- RPC Port: 22002
- WS Port: 23002
access to geth of nodes: docker exec -it <container_name> geth attach ./qdata/dd/geth.ipc
stop: docker-compose stop
remove: docker-compose down -v