-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
95 lines (83 loc) · 2.63 KB
/
docker-compose.yaml
File metadata and controls
95 lines (83 loc) · 2.63 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
88
89
90
91
92
93
94
95
version: '3.3'
services:
#Sawtooth----------------------------------
validator:
image: hyperledger/sawtooth-validator:1.2.6
container_name: sawtooth-validator-default
expose:
- 4004
ports:
- "4004:4004"
# start the validator with an empty genesis batch
entrypoint: "bash -c \"\
sawadm keygen && \
sawtooth keygen my_key && \
sawset genesis -k /root/.sawtooth/keys/my_key.priv && \
sawset proposal create \
-k /root/.sawtooth/keys/my_key.priv \
sawtooth.consensus.algorithm.name=Devmode \
sawtooth.consensus.algorithm.version=0.1 \
-o config.batch && \
sawadm genesis config-genesis.batch config.batch && \
sawtooth-validator -vv \
--endpoint tcp://validator:8800 \
--bind component:tcp://eth0:4004 \
--bind network:tcp://eth0:8800 \
--bind consensus:tcp://eth0:5050 \
--scheduler serial \
\""
crypto-tp:
image: jsbravoc/crypto-tp:latest
container_name: crypto-tp
depends_on:
- validator
environment:
- VALIDATOR=tcp://validator:4004
# start the validator with an empty genesis batch
crypto-api:
image: jsbravoc/crypto-api:latest
container_name: crypto-api
expose:
- 3000
ports:
- '3000:3000'
depends_on:
- validator
- crypto-tp
environment:
- SAWTOOTH_PRIVATE_KEY=0x7f664d71e4200b4a2989558d1f6006d0dac9771a36a546b1a47c384ec9c4f04b
- SAWTOOTH_REST=http://rest-api:8008
- SAWTOOTH_REST_TIMEOUT=5000
- VALIDATOR=tcp://validator:4004
- ENABLE_LOGGING=false
- DISABLE_INTEGRITY_VALIDATION=false
- HIDE_ENV_VARIABLES=true
settings-tp:
image: hyperledger/sawtooth-settings-tp:1.2.6
container_name: sawtooth-settings-tp-default
depends_on:
- validator
entrypoint: settings-tp -vv -C tcp://validator:4004
devmode-engine:
image: hyperledger/sawtooth-devmode-engine-rust:1.2.4
container_name: sawtooth-devmode-engine-rust-default
depends_on:
- validator
entrypoint: devmode-engine-rust -C tcp://validator:5050
rest-api:
image: hyperledger/sawtooth-rest-api:1.2.6
container_name: sawtooth-rest-api-default
ports:
- "8008:8008"
depends_on:
- validator
entrypoint: sawtooth-rest-api -C tcp://validator:4004 --bind rest-api:8008
shell:
image: hyperledger/sawtooth-shell:1.2.6
container_name: sawtooth-shell-default
depends_on:
- rest-api
entrypoint: "bash -c \"\
sawtooth keygen && \
tail -f /dev/null \
\""