-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Install chaincode from docker image #429
Comments
I would find this feature very helpful. What all would need to be changed in-order to support it |
Currently this is the place where we have functions handling chaincode lifecycle (build, install, approve and commit): fabric-docker/scripts/chaincode-functions-v2.sh. And this is the place where we use the functions: fabric-docker/commands-generated/chaincode-install-v2.sh (it uses https://ejs.co/ template engine). And this is how our current config looks like: src/types/FabloConfigJson.ts (look for: Now, the feature requires to allow the chaincode config For local testing/evaluation you can create your own |
Should the default option be to deploy the chain code as a caas image? It would make extending it out to the kubernetes version easier as the bevel fabric operators default way is to deploy it as caas |
Yes, exactly. I think that's the best approach. |
Hey @dzikowski working on it |
Right now Fablo requires a path to chaincode directory. We can additionally support passing chaincode docker image.
The text was updated successfully, but these errors were encountered: