Skip to content

Commit

Permalink
bugfix: the fabric tools image is a problem because they have changed…
Browse files Browse the repository at this point in the history
… the location of the FABRIC_CONFIG folder from /etc/hyperledger/fabric to /var/hyperledger/fabric/config/

Signed-off-by: Andrés Torres <[email protected]>
  • Loading branch information
Andrés Torres committed Oct 4, 2023
1 parent dfb2f28 commit 09c9936
Showing 1 changed file with 1 addition and 1 deletion.
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 09c9936

Please sign in to comment.