-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
136 lines (124 loc) · 4.58 KB
/
docker-compose.yml
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
version: '3'
services:
bitcoin:
image: ruimarinho/bitcoin-core:0.18
command: "-printtoconsole -regtest=1 -rpcbind=0.0.0.0 -rpcallowip=0.0.0.0/0 -rpcuser=test -rpcpassword=test -deprecatedrpc=generate"
ganache:
image: trufflesuite/ganache-cli:v6.8.2
entrypoint:
- node
- /app/ganache-core.docker.cli.js
- --account
- 0xda8e316c9e63e6725d93ebae25f923c567c4d7e9fbd2d1740a4e27d4a6094fab,100000000000000000000000000
- --account
- 0xda9e316c9e63e6725d93ebae25f923c567c4d7e9fbd2d1740a4e27d4a6094fab,100000000000000000000000000
- --gasLimit
- '8000000'
- --db
- /ganache_data
- --defaultBalanceEther
- --verbose
- '10000000'
volumes:
- testrpc:/ganache_data
migrate:
image: echoprotocol/sidechain-smartcontracts:0.8.3
command: /bin/sh -c "sleep 5; npm run migrate -- --network docker;"
depends_on:
- ganache
volumes:
- ./genesis.json:/app/genesis.json
echo:
image: echoprotocol/echo:0.17.1-rc.8
hostname: 'echo'
command: '--data-dir=/echo/datadir/
--genesis-json=/echo/genesis.json
--plugins=sidechain,ethrpc
--rpc-endpoint=0.0.0.0:6311
--ethrpc-endpoint=0.0.0.0:8092
--start-echorand
--api-access=/echo/access.json
--account-info=[\"1.2.11\",\"5JkYKpRDWeY3DN4qjZRKpEfxCqmTX17fsBJhupE9DJVVmJoGh6C\"]
--account-info=[\"1.2.6\",\"5J6azg8iUcQEbxEaLAFrJbcdBjgKqewLF81A63NE4T2aeHCsKiE\"]
--account-info=[\"1.2.7\",\"5KaTLGtpGyCbod6hM2A9RETYcNn8CMR7e7LRKLi6DPDvnF1qxEm\"]
--account-info=[\"1.2.8\",\"5KJe2KY1yVnnBwXDtTDGfmnRGdUdR4HpLTUqpsG39h6VexYQwWH\"]
--account-info=[\"1.2.9\",\"5K3FJdakQUJvLon2dBxLNUwcHJbZxW6XBvc1AJKDCiGHPyXZadz\"]
--account-info=[\"1.2.10\",\"5JMgujU9Zmz85buhkPQyEMXLvK7FZ6giSLjRT25uf1tpV6uPULS\"]
--sidechain-eth-committeeman=[\"1.2.6\",\"942c314672a5cba316dc03764ea5256ed9302f7704c2dd14db1f40c962accfd9\"]
--sidechain-eth-committeeman=[\"1.2.7\",\"1e3868b734ac73c6676fd4f5687b0b31d98bd53621bd50e4124906a7d50b1e43\"]
--sidechain-eth-committeeman=[\"1.2.8\",\"05a00856ddf2527e21249c22a351a093eb40e70732e4e327c01ca07587629138\"]
--sidechain-eth-committeeman=[\"1.2.9\",\"770be2d7d5063fecfd6322f496865d327e11fabdacfdb6e548a6e347234e5821\"]
--sidechain-eth-committeeman=[\"1.2.10\",\"f3d900b6ade55834ae039f06390e92f8215e45cdf42faf8d34a005636e944b38\"]
--registrar-account=\"1.2.8\"
--eth-rpc-ip=ganache
--eth-rpc-port=8545
--sidechain-btc-testnet
--sidechain-btc-committeeman=[\"1.2.6\",\"cNgp6gWXaaokgzVRQ9m3zrkgQictzYyTBkw3prrUKadHfedT1Azg\"]
--sidechain-btc-committeeman=[\"1.2.7\",\"cNCcK7tKptYBZc6LXQVVhU33xFNLf8K9FNKdeToYioH8DBGLPjFq\"]
--sidechain-btc-committeeman=[\"1.2.8\",\"cMfvqZL27R5o7bhCRop3QBMezeUyL6h7KhUcpT2cmVW8Ftjo1Aup\"]
--sidechain-btc-committeeman=[\"1.2.9\",\"cSBuEeeysRAMkXt1A8aubynVPaP14VGAW6iULYWSUFpGXBj3Byg3\"]
--sidechain-btc-committeeman=[\"1.2.10\",\"cVqYxKMybncNeQ2YQ4wyyUi6PzD5ttJHUuATB8XUvb3AjdAJnNEp\"]
--btc-rpc-ip=bitcoin
--btc-rpc-port=18443
--btc-rpc-user=test
--btc-rpc-password=test'
volumes:
- ./genesis.json:/echo/genesis.json
- echo-logs:/echo/datadir/logs
depends_on:
- ganache
- bitcoin
redis:
image: redis
restart: always
ports:
- "127.0.0.1:26456:6379"
influxdb:
image: influxdb:alpine
volumes:
- influxdb-storage:/var/lib/influxdb
environment:
- INFLUXDB_DB=committee_dashboard
- INFLUXDB_ADMIN_USER=admin
- INFLUXDB_ADMIN_PASSWORD=${DATABASE_USER_PASSWORD}
ports:
- 127.0.0.1:26458:8086
restart: always
celery:
image: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME
command: python3 run_service.py celery
env_file:
- ./Dockerenv/${DOCKER_APP_INSTANCE}.env
- ./Dockerenv/general.env
environment:
- DATABASE_USER_PASSWORD=${DATABASE_USER_PASSWORD}
- COINMARKETCAP_API_KEY=${COINMARKETCAP_API_KEY}
restart: always
volumes:
- echo-logs:/app/echo-logs/
depends_on:
- influxdb
- redis
- echo
web:
image: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME
command: python3 run_service.py web
env_file:
- ./Dockerenv/${DOCKER_APP_INSTANCE}.env
- ./Dockerenv/general.env
environment:
- DATABASE_USER_PASSWORD=${DATABASE_USER_PASSWORD}
- COINMARKETCAP_API_KEY=${COINMARKETCAP_API_KEY}
restart: always
ports:
- 26451:5000
volumes:
- echo-logs:/app/echo-logs/
depends_on:
- influxdb
- redis
- celery
volumes:
testrpc:
echo-logs:
influxdb-storage: