This repository was archived by the owner on Feb 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-cli-verify.yaml
More file actions
87 lines (79 loc) · 2.38 KB
/
docker-compose-cli-verify.yaml
File metadata and controls
87 lines (79 loc) · 2.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# Copyright IBM Corp. All Rights Reserved.
#
# SPDX-License-Identifier: Apache-2.0
#
version: '2'
# volumes:
# orderer.example.com:
# peer0.org1.example.com:
# peer1.org1.example.com:
# peer0.org2.example.com:
# peer1.org2.example.com:
networks:
byfn:
services:
verify.peer0.org1.example.com:
container_name: verify.peer0.org1.example.com
extends:
file: docker-compose-cli.yaml
service: peer0.org1.example.com
environment:
- CORE_PEER_ARCHIVING_ENABLED=false
- CORE_PEER_ARCHIVER_ENABLED=true
- CORE_PEER_GOSSIP_USELEADERELECTION=true
- CORE_PEER_GOSSIP_ORGLEADER=false
- FABRIC_LOGGING_SPEC=verifyResult=INFO:fatal
- FABRIC_LOGGING_FORMAT="%{message}"
networks:
- byfn
tty: true
command: sh
verify.peer1.org1.example.com:
container_name: verify.peer1.org1.example.com
extends:
file: docker-compose-cli.yaml
service: peer1.org1.example.com
environment:
- CORE_PEER_ARCHIVING_ENABLED=true
- CORE_PEER_ARCHIVER_ENABLED=false
- CORE_PEER_GOSSIP_USELEADERELECTION=true
- CORE_PEER_GOSSIP_ORGLEADER=false
- FABRIC_LOGGING_SPEC=INFO
- FABRIC_LOGGING_FORMAT=%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x} %{message}
# - FABRIC_LOGGING_FORMAT="%{message}"
networks:
- byfn
tty: true
command: sh
verify.peer0.org2.example.com:
container_name: verify.peer0.org2.example.com
extends:
file: docker-compose-cli.yaml
service: peer0.org2.example.com
environment:
- CORE_PEER_ARCHIVING_ENABLED=false
- CORE_PEER_ARCHIVER_ENABLED=true
- CORE_PEER_GOSSIP_USELEADERELECTION=true
- CORE_PEER_GOSSIP_ORGLEADER=false
- FABRIC_LOGGING_SPEC=verifyResult=INFO:fatal
- FABRIC_LOGGING_FORMAT="%{message}"
networks:
- byfn
tty: true
command: sh
verify.peer1.org2.example.com:
container_name: verify.peer1.org2.example.com
extends:
file: docker-compose-cli.yaml
service: peer1.org2.example.com
environment:
- CORE_PEER_ARCHIVING_ENABLED=false
- CORE_PEER_ARCHIVER_ENABLED=false
- CORE_PEER_GOSSIP_USELEADERELECTION=true
- CORE_PEER_GOSSIP_ORGLEADER=false
- FABRIC_LOGGING_SPEC=verifyResult=INFO:fatal
- FABRIC_LOGGING_FORMAT="%{message}"
networks:
- byfn
tty: true
command: sh