Vagrant is not able to download the docker image as the local CA is not carrying its certificate which was used to issue the HashiCorp server's certificate.
If you want to run Hyperledger Fabric and eventually deploy chaincode to develop a blockchain application, you can run docker-compose up with the following docker-compose.yml definition:
vp:
image: hyperledger/fabric-peer
ports:
- "5000:5000"
environment:
- CORE_PEER_ADDRESSAUTODETECT=true
- CORE_VM_ENDPOINT=http://127.0.0.1:2375
- CORE_LOGGING_LEVEL=DEBUG
command: peer node start
membersrvc:
image: hyperledger/fabric-membersrvc
command: membersrvc
The Vagrant-based development environment approach for getting the locally running Fabric is more oriented towards developers.
Want to make your career in Blockchain? Enroll in Blockchain Course to acquire the essential skills.