Skip to content
This repository was archived by the owner on Jan 20, 2021. It is now read-only.

Commit 10ece80

Browse files
author
Simon Stone
committed
Upgrade to Fabric v1.4.6 (resolves #148)
Signed-off-by: Simon Stone <[email protected]>
1 parent bc738a3 commit 10ece80

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
1212
RUN 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
1919
COPY ansible-role-blockchain-platform-manager.tar.gz /usr/local/src/

tasks/docker/create-ca.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
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:

tasks/docker/create-orderer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
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:

tasks/docker/create-peer.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
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:
@@ -143,7 +143,7 @@
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

0 commit comments

Comments
 (0)