-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
53 lines (50 loc) · 1.53 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
version: '3'
services:
# daemon:
# build: .
# ports:
# - 3600:80
# command: node dist
# volumes:
# - ./tx-db.json:/code/tx_dump.json
# - ./invoices.json:/code/invoices.json
# - ./config.json:/code/config.json:ro
daemon-dev:
build: .
ports:
- 3600:80
command: npm start
volumes:
- ./daemon/src:/code/src:ro
- ./tx-db.json:/code/tx_dump.json
- ./invoices.json:/code/invoices.json
- ./config.json:/code/config.json:ro
# daemon-a:
# build: .
# ports:
# - 3601:80
# command: npm start
# environment:
# - ETHEREUM_WALLET_PRIVATE_KEY=
# - ETHEREUM_NODE_URL=https://rinkeby.infura.io/v3/e3f943e7f2904939955a13f0b9283840
# - ETHEREUM_NETWORK_ID=4
# - HUB_CONTRACT_ADDRESS=0x140D29486BABCbD57C63edCCCbf2EC92ffBfEc7c
# - HUB_PROVIDER_URL=http://rinkeby.liquidity.network
# - TOKEN_CONTRACT_ADDRESS=0x140D29486BABCbD57C63edCCCbf2EC92ffBfEc7c
# volumes:
# - ./daemon/src:/code/src:ro
#
# daemon-b:
# build: .
# ports:
# - 3602:80
# command: npm start
# environment:
# - ETHEREUM_WALLET_PRIVATE_KEY=
# - ETHEREUM_NODE_URL=https://rinkeby.infura.io/v3/e3f943e7f2904939955a13f0b9283840
# - ETHEREUM_NETWORK_ID=4
# - HUB_CONTRACT_ADDRESS=0x140D29486BABCbD57C63edCCCbf2EC92ffBfEc7c
# - HUB_PROVIDER_URL=http://rinkeby.liquidity.network
# - TOKEN_CONTRACT_ADDRESS=0x140D29486BABCbD57C63edCCCbf2EC92ffBfEc7c
# volumes:
# - ./daemon/src:/code/src:ro