Open torrespro opened 6 months ago
which port explorer I can access it once I enable in config file
explorer ports are 7010 + orgIndex
, so 7010
for the first organization, 7011
for the second one etc. Here is the code:
const getPortsForOrg = (orgIndex: number) => ({
caPort: 7020 + 20 * orgIndex,
headPeerPort: 7021 + 20 * orgIndex,
headOrdererPort: 7030 + 20 * orgIndex,
headPeerCouchDbPort: 5080 + 20 * orgIndex,
fabloRestPort: 8800 + orgIndex,
explorerPort: 7010 + orgIndex,
});
You can also check them in fablo-target/fabric-docker/docker-compose.yaml
file.
Hey, to which file does this changes need to be made? CC: @dzikowski @torrespro