Skip to content

Commit

Permalink
Merge pull request #270 from torrespro/main
Browse files Browse the repository at this point in the history
feature: upgrade the Fabric version to v2.5 TLS
  • Loading branch information
nguyer authored Feb 13, 2024
2 parents 8666368 + 2d6ddf2 commit f489c54
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions internal/blockchain/fabric/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

package fabric

var FabricToolsImageName = "hyperledger/fabric-tools:2.3"
var FabricToolsImageName = "hyperledger/fabric-tools:2.5"
var FabricCAImageName = "hyperledger/fabric-ca:1.5"
var FabricOrdererImageName = "hyperledger/fabric-orderer:2.3"
var FabricPeerImageName = "hyperledger/fabric-peer:2.3"
var FabricOrdererImageName = "hyperledger/fabric-orderer:2.5"
var FabricPeerImageName = "hyperledger/fabric-peer:2.5"
2 changes: 1 addition & 1 deletion internal/blockchain/fabric/fabric_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ func (p *FabricProvider) FirstTimeSetup() error {
"--platform", getDockerPlatform(),
"--rm",
"-v", fmt.Sprintf("%s:/etc/firefly", volumeName),
"-v", fmt.Sprintf("%s:/etc/hyperledger/fabric/configtx.yaml", path.Join(blockchainDirectory, "configtx.yaml")),
"-v", fmt.Sprintf("%s:/var/hyperledger/fabric/config/configtx.yaml", path.Join(blockchainDirectory, "configtx.yaml")),
FabricToolsImageName,
"configtxgen",
"-outputBlock", "/etc/firefly/firefly.block",
Expand Down

0 comments on commit f489c54

Please sign in to comment.