This repository was archived by the owner on Jan 20, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -24,13 +24,13 @@ steps:
2424 displayName : Install Python dependencies
2525 - script : |
2626 set -ex
27- wget -qO fabric-bins.tar.gz https://github.com/hyperledger/fabric/releases/download/v1.4.4 /hyperledger-fabric-linux-amd64-1.4.4 .tar.gz
27+ wget -qO fabric-bins.tar.gz https://github.com/hyperledger/fabric/releases/download/v1.4.6 /hyperledger-fabric-linux-amd64-1.4.6 .tar.gz
2828 sudo tar xvf fabric-bins.tar.gz -C /usr/local
2929 rm fabric-bins.tar.gz
3030 displayName: Download Fabric CLI
3131 - script : |
3232 set -ex
33- wget -qO fabric-ca-bins.tar.gz https://github.com/hyperledger/fabric-ca/releases/download/v1.4.4 /hyperledger-fabric-ca-linux-amd64-1.4.4 .tar.gz
33+ wget -qO fabric-ca-bins.tar.gz https://github.com/hyperledger/fabric-ca/releases/download/v1.4.6 /hyperledger-fabric-ca-linux-amd64-1.4.6 .tar.gz
3434 sudo tar xvf fabric-ca-bins.tar.gz -C /usr/local
3535 rm fabric-ca-bins.tar.gz
3636 displayName: Download Fabric CA CLI
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ RUN wget -qO docker-19.03.5.tgz https://download.docker.com/linux/static/stable/
1111 chmod +x /usr/local/bin/docker-compose
1212RUN mkdir /lib64 && \
1313 ln -s /lib/libc.musl-x86_64.so.1 /lib64/ld-linux-x86-64.so.2 && \
14- wget -qO fabric-bins.tar.gz https://github.com/hyperledger/fabric/releases/download/v1.4.4 /hyperledger-fabric-linux-amd64-1.4.4 .tar.gz && \
14+ wget -qO fabric-bins.tar.gz https://github.com/hyperledger/fabric/releases/download/v1.4.6 /hyperledger-fabric-linux-amd64-1.4.6 .tar.gz && \
1515 tar xvf fabric-bins.tar.gz -C /usr/local && \
16- wget -qO fabric-ca-bins.tar.gz https://github.com/hyperledger/fabric-ca/releases/download/v1.4.4 /hyperledger-fabric-ca-linux-amd64-1.4.4 .tar.gz && \
16+ wget -qO fabric-ca-bins.tar.gz https://github.com/hyperledger/fabric-ca/releases/download/v1.4.6 /hyperledger-fabric-ca-linux-amd64-1.4.6 .tar.gz && \
1717 tar xvf fabric-ca-bins.tar.gz -C /usr/local && \
1818 rm fabric-bins.tar.gz fabric-ca-bins.tar.gz
1919COPY ansible-role-blockchain-platform-manager.tar.gz /usr/local/src/
Original file line number Diff line number Diff line change 1616- name : Create certificate authority container
1717 docker_container :
1818 name : " {{ ca.docker.name }}"
19- image : hyperledger/fabric-ca:1.4.4
19+ image : hyperledger/fabric-ca:1.4.6
2020 networks :
2121 - name : " {{ infrastructure.docker.network }}"
2222 aliases :
Original file line number Diff line number Diff line change 9595- name : Start orderer container
9696 docker_container :
9797 name : " {{ orderer.docker.name }}"
98- image : hyperledger/fabric-orderer:1.4.4
98+ image : hyperledger/fabric-orderer:1.4.6
9999 networks :
100100 - name : " {{ infrastructure.docker.network }}"
101101 aliases :
Original file line number Diff line number Diff line change 126126- name : Start peer container
127127 docker_container :
128128 name : " {{ peer.docker.name }}"
129- image : hyperledger/fabric-peer:1.4.4
129+ image : hyperledger/fabric-peer:1.4.6
130130 networks :
131131 - name : " {{ infrastructure.docker.network }}"
132132 aliases :
143143 CORE_PEER_GOSSIP_EXTERNALENDPOINT : " {{ peer.docker.hostname }}:{{ peer.docker.port }}"
144144 CORE_PEER_TLS_ENABLED : " {{ 'true' if peer.tls.enabled else 'false' }}"
145145 CORE_VM_DOCKER_HOSTCONFIG_NETWORKMODE : " {{ infrastructure.docker.network }}"
146- CORE_CHAINCODE_BUILDER : hyperledger/fabric-ccenv:1.4.4
146+ CORE_CHAINCODE_BUILDER : hyperledger/fabric-ccenv:1.4.6
147147 CORE_CHAINCODE_GOLANG_RUNTIME : hyperledger/fabric-baseos:0.4.18
148148 CORE_CHAINCODE_JAVA_RUNTIME : hyperledger/fabric-javaenv:1.4.4
149149 CORE_CHAINCODE_NODE_RUNTIME : hyperledger/fabric-baseimage:0.4.18
You can’t perform that action at this time.
0 commit comments