From 23d26e6de0f6f03717afc6ea0a55c882be580103 Mon Sep 17 00:00:00 2001 From: Peter Somogyvari Date: Tue, 19 Nov 2019 00:15:28 -0800 Subject: [PATCH] fix(quorum): docker-compose network name typo It was copy-pasted from the fabric docker-compose and so the network names were incorrectly referencing the fabric network, not the quorum. --- .../federations/docker-compose-quorum.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/simple-asset-transfer/federations/docker-compose-quorum.yml b/examples/simple-asset-transfer/federations/docker-compose-quorum.yml index 98f88aed213..2f2e2a1df8d 100644 --- a/examples/simple-asset-transfer/federations/docker-compose-quorum.yml +++ b/examples/simple-asset-transfer/federations/docker-compose-quorum.yml @@ -134,7 +134,7 @@ services: - ETCD_INITIAL_CLUSTER=etcd1=http://etcd1:2380,etcd2=http://etcd2:2380,etcd3=http://etcd3:2380 - ETCD_INITIAL_CLUSTER_STATE=new networks: - fabric-network: + quorum-network: ipv4_address: 192.20.0.50 etcd2: @@ -150,7 +150,7 @@ services: - ETCD_INITIAL_CLUSTER=etcd1=http://etcd1:2380,etcd2=http://etcd2:2380,etcd3=http://etcd3:2380 - ETCD_INITIAL_CLUSTER_STATE=new networks: - fabric-network: + quorum-network: ipv4_address: 192.20.0.51 etcd3: @@ -166,5 +166,5 @@ services: - ETCD_INITIAL_CLUSTER=etcd1=http://etcd1:2380,etcd2=http://etcd2:2380,etcd3=http://etcd3:2380 - ETCD_INITIAL_CLUSTER_STATE=new networks: - fabric-network: + quorum-network: ipv4_address: 192.20.0.52