mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-22 17:45:10 +00:00
Error when trying to instanciate chaincode
CORE_VM_DOCKER_HOSTCONFIG_NETWORKMODE is set to "byfn_default" but this network interface does not exist, resulting in an error when trying to instanciate chainecode. As the docker compose file is in the folder "first-network", docker will create a default network called "firstnetwork_default", so should change the env. variable accordingly. Other solution could be to define a custom network "byfn_default" in the docker-compose-cli.yaml file using top-level key "networks" (https://docs.docker.com/compose/networking/)
This commit is contained in:
parent
058c511a05
commit
e88873f2e1
1 changed files with 4 additions and 2 deletions
|
|
@ -10,9 +10,11 @@ services:
|
||||||
environment:
|
environment:
|
||||||
- CORE_VM_ENDPOINT=unix:///host/var/run/docker.sock
|
- CORE_VM_ENDPOINT=unix:///host/var/run/docker.sock
|
||||||
# the following setting starts chaincode containers on the same
|
# the following setting starts chaincode containers on the same
|
||||||
# bridge network as the peers
|
# bridge network as the peers.
|
||||||
|
# As the docker compose file is in the folder "first-network",
|
||||||
|
# docker will create a default network called "firstnetwork_default"
|
||||||
# https://docs.docker.com/compose/networking/
|
# https://docs.docker.com/compose/networking/
|
||||||
- CORE_VM_DOCKER_HOSTCONFIG_NETWORKMODE=byfn_default
|
- CORE_VM_DOCKER_HOSTCONFIG_NETWORKMODE=firstnetwork_default
|
||||||
#- CORE_LOGGING_LEVEL=ERROR
|
#- CORE_LOGGING_LEVEL=ERROR
|
||||||
- CORE_LOGGING_LEVEL=DEBUG
|
- CORE_LOGGING_LEVEL=DEBUG
|
||||||
- CORE_PEER_TLS_ENABLED=true
|
- CORE_PEER_TLS_ENABLED=true
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue