-
Notifications
You must be signed in to change notification settings - Fork 709
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FAB-6050] Add fabric images with fabric-ca-client
This change set builds 3 new docker images: 1) fabric-ca-orderer Extends fabric-orderer and adds fabric-ca-client to enroll the orderer. 2) fabric-ca-peer Extends fabric-peer and adds fabric-ca-client to enroll the peer. 3) fabric-ca-tools Extends fabric-tools and adds fabric-ca-client to talk to fabric-ca-server. These images will be used by fabric-samples/fabric-ca which will be an end-to-end sample for using fabric CA with fabric. Change-Id: I4c56bedac1a4337073ee12f8af32955c3e2b4522 Signed-off-by: Keith Smith <[email protected]>
- Loading branch information
Keith Smith
committed
Sep 25, 2017
1 parent
1ab60e0
commit b21aa3b
Showing
4 changed files
with
43 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# | ||
# Copyright IBM Corp. All Rights Reserved. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
FROM hyperledger/fabric-orderer:_FABRIC_TAG_ | ||
COPY payload/fabric-ca-client /usr/local/bin | ||
RUN chmod +x /usr/local/bin/fabric-ca-client |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# | ||
# Copyright IBM Corp. All Rights Reserved. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
FROM hyperledger/fabric-peer:_FABRIC_TAG_ | ||
COPY payload/fabric-ca-client /usr/local/bin | ||
RUN chmod +x /usr/local/bin/fabric-ca-client |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# | ||
# Copyright IBM Corp. All Rights Reserved. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
FROM hyperledger/fabric-tools:_FABRIC_TAG_ | ||
COPY payload/fabric-ca-client /usr/local/bin | ||
RUN chmod +x /usr/local/bin/fabric-ca-client |