脚本容器在脚本完成后停止。
运行bash文件(docker-compose -f docker-compose.yml up -d ca.example.com orderer.example.com peer0.org1.example.com couchdb)
获取错误:
Error response from daemon: Container 987d99518d4158f29f0800c8bbef1c2b1295d6fade341fde7c775e415b700a38 is not running
运行:
docker ps -a
表示退出状态(1)13秒
所以它运行并关闭?
每次我跑:
docker rm -f $(docker ps -aq)
并重新运行bash文件,它是错误消息中的另一个容器。
这是bash文件:
#!/bin/bash
#
# SPDX-License-Identifier: Apache-2.0
# This code is based on code written by the Hyperledger Fabric community.
# Original code can be found here: https://github.com/hyperledger/fabric-samples/blob/release/fabcar/startFabric.sh
#
# Exit on first error
set -e
# don't rewrite paths for Windows Git Bash users
export MSYS_NO_PATHCONV=1
starttime=$(date +%s)
if [ ! -d ~/.hfc-key-store/ ]; then
mkdir ~/.hfc-key-store/
fi
# launch network; create channel and join peer to channel
cd ../basic-network
./start.sh
# Now launch the CLI container in order to install, instantiate chaincode
# and prime the ledger with our 10 tuna catches
docker-compose -f ./docker-compose.yml up -d cli
docker exec -e "CORE_PEER_LOCALMSPID=Org1MSP" -e "CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp" cli peer chaincode install -n tuna-app -v 1.0 -p github.com/tuna-app
docker exec -e "CORE_PEER_LOCALMSPID=Org1MSP" -e "CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp" cli peer chaincode instantiate -o orderer.example.com:7050 -C mychannel -n tuna-app -v 1.0 -c '{"Args":[""]}' -P "OR ('Org1MSP.member','Org2MSP.member')"
sleep 10
docker exec -e "CORE_PEER_LOCALMSPID=Org1MSP" -e "CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp" cli peer chaincode invoke -o orderer.example.com:7050 -C mychannel -n tuna-app -c '{"function":"initLedger","Args":[""]}'
printf "\nTotal execution time : $(($(date +%s) - starttime)) secs ...\n\n"
printf "\nStart with the registerAdmin.js, then registerUser.js, then server.js\n\n"
答案 0 :(得分:0)
删除-d标志。
docker-compose -f ./docker-compose.yml up cli
只有cli才会退出,因为您不需要它在前台运行,但其余的容器将始终在前台运行。
如果您想更深入地检查,请在您的docker-compose文件中,从命令属性中删除-d。
让我知道它是否适合您。并将docker ps -a
放在这里,以防它对您不起作用。
答案 1 :(得分:0)
解决方案1-
使用以下命令启动网络时,默认情况下,CLI容器会停留1000秒。
docker-compose -f docker-compose-cli.yaml up -d
因此,在运行此命令之前,您将必须设置TIMEOUT变量。要设置超时,请在启动网络之前执行以下命令。
export TIMEOUT=<no of seconds your CLI should stay up>
这样,您可以确保只要需要执行其他命令,就可以保持cli的状态。
如果您的CLI不在运行,则只需执行此命令即可启动CLI。
docker start cli
解决方案-2
在运行docker-compose -f docker-compose-cli.yaml up -d
命令之前,先打开docker-compose-cli.yaml`文件。
然后像这样注释掉以下行-
#command: /bin/bash -c './scripts/script.sh ${CHANNEL_NAME} ${DELAY}; sleep $TIMEOUT'
希望这会有所帮助。