From 938a3e6124e24e1665698cc54ae37c1473062e80 Mon Sep 17 00:00:00 2001 From: Nick Gaski Date: Wed, 8 Nov 2017 15:49:11 -0500 Subject: [PATCH] [FAB-6895] Update doc for chaincode mounting This changes the manual peer chaincode install command to reflect the correct path of the mounted volume on the CLI container. Also fixes an inline reference [ci-skip] Change-Id: I46472af16dbdfe7ece355ba8020137cea0510dce Signed-off-by: Nick Gaski --- docs/source/build_network.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/build_network.rst b/docs/source/build_network.rst index 6ef39376798..11d78b842ff 100644 --- a/docs/source/build_network.rst +++ b/docs/source/build_network.rst @@ -495,7 +495,7 @@ Start your network: If you want to see the realtime logs for your network, then do not supply the ``-d`` flag. If you let the logs stream, then you will need to open a second terminal to execute the CLI calls. -.. _peerenvvars:: +.. _peerenvvars: Environment variables ^^^^^^^^^^^^^^^^^^^^^ @@ -651,7 +651,7 @@ place the specified source code flavor onto our peer's filesystem. .. code:: bash # this installs the Go chaincode - peer chaincode install -n mycc -v 1.0 -p github.com/chaincode_example02/go/ + peer chaincode install -n mycc -v 1.0 -p github.com/chaincode/chaincode_example02/go/ **Node.js** @@ -659,7 +659,7 @@ place the specified source code flavor onto our peer's filesystem. # this installs the Node.js chaincode # make note of the -l flag; we use this to specify the language - peer chaincode install -n mycc -v 1.0 -l node -p /opt/gopath/src/github.com/chaincode_example02/node/ + peer chaincode install -n mycc -v 1.0 -l node -p /opt/gopath/src/github.com/chaincode/chaincode_example02/node/ Next, instantiate the chaincode on the channel. This will initialize the chaincode on the channel, set the endorsement policy for the chaincode, and