forked from fedimint/fedimint-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
172 lines (163 loc) · 4.9 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
version: '3'
services:
fedimintd_1:
# Snapshot of Fedimint after AlephBFT was merged: https://github.com/fedimint/fedimint/pull/3313
image: fedimint/fedimintd:v0.2.1
environment:
- FM_DATA_DIR=/data
- FM_BIND_P2P=0.0.0.0:18173
- FM_P2P_URL=fedimint://fedimintd_1:18173
- FM_BIND_API=0.0.0.0:18174
- FM_API_URL=ws://fedimintd_1:18174
- FM_BITCOIN_RPC_URL=http://bitcoin:bitcoin@bitcoind:43782
- FM_BITCOIN_RPC_KIND=bitcoind
ports:
- '18174:18174'
volumes:
- ./fm_data/1/data:/data
depends_on:
- bitcoind
gatewayd_1:
# Snapshot of Fedimint after AlephBFT was merged: https://github.com/fedimint/fedimint/pull/3313
image: fedimint/gatewayd:v0.2.1
command: gatewayd lnd
environment:
# Path to folder containing gateway config and data files
- FM_GATEWAY_DATA_DIR=/gateway_data
# Gateway webserver listen address
- FM_GATEWAY_LISTEN_ADDR=0.0.0.0:8175
# Public URL from which the webserver API is reachable
- FM_GATEWAY_API_ADDR=http://gatewayd_1:8175
# Gateway webserver authentication password
- FM_GATEWAY_PASSWORD=thereisnosecondbest
# Configured gateway routing fees Format: <base_msat>,<proportional_millionths>
- FM_GATEWAY_FEES=0,1000
# LND RPC address
- FM_LND_RPC_ADDR=https://lnd_1:11009
# LND TLS cert file path
- FM_LND_TLS_CERT=/lnd_data/tls.cert
# LND macaroon file path
- FM_LND_MACAROON=/lnd_data/admin.macaroon
volumes:
- ./fm_data/gw:/gateway_data
- ./misc/test/data/data:/lnd_data
ports:
- '8175:8175'
depends_on:
- lnd_1
lnd_1:
image: lightninglabs/lnd:v0.17.3-beta
ports:
- '11009:11009'
volumes:
- ./misc/test/data:/root/.lnd
- ./misc/test/lnd.conf:/root/.lnd/lnd.conf
depends_on:
- bitcoind
- fedimintd_1
fedimintd_2:
# Snapshot of Fedimint after AlephBFT was merged: https://github.com/fedimint/fedimint/pull/3313
image: fedimint/fedimintd:v0.2.1
environment:
- FM_DATA_DIR=/data
- FM_BIND_P2P=0.0.0.0:18173
- FM_P2P_URL=fedimint://fedimintd_2:18173
- FM_BIND_API=0.0.0.0:18184
- FM_API_URL=ws://fedimintd_2:18184
- FM_BITCOIN_RPC_URL=http://bitcoin:bitcoin@bitcoind:43782
- FM_BITCOIN_RPC_KIND=bitcoind
ports:
- '18184:18184'
volumes:
- ./fm_data/2/data:/data
depends_on:
- bitcoind
# gatewayd_2:
# image: fedimint/gatewayd:master
# networks:
# app_network:
# ipv4_address: 10.5.0.8
fedimintd_3:
# Snapshot of Fedimint after AlephBFT was merged: https://github.com/fedimint/fedimint/pull/3313
image: fedimint/fedimintd:v0.2.1
environment:
- FM_DATA_DIR=/data
- FM_BIND_P2P=0.0.0.0:18174
- FM_P2P_URL=fedimint://fedimintd_3:18174
- FM_BIND_API=0.0.0.0:18185
- FM_API_URL=ws://fedimintd_3:18185
- FM_BITCOIN_RPC_URL=http://bitcoin:bitcoin@bitcoind:43782
- FM_BITCOIN_RPC_KIND=bitcoind
ports:
- '18185:18185'
volumes:
- ./fm_data/3/data:/data
depends_on:
- bitcoind
fedimintd_4:
# Snapshot of Fedimint after AlephBFT was merged: https://github.com/fedimint/fedimint/pull/3313
image: fedimint/fedimintd:v0.2.1
environment:
- FM_DATA_DIR=/data
- FM_BIND_P2P=0.0.0.0:18175
- FM_P2P_URL=fedimint://fedimintd_4:18175
- FM_BIND_API=0.0.0.0:18186
- FM_API_URL=ws://fedimintd_4:18186
- FM_BITCOIN_RPC_URL=http://bitcoin:bitcoin@bitcoind:43782
- FM_BITCOIN_RPC_KIND=bitcoind
ports:
- '18186:18186'
volumes:
- ./fm_data/4/data:/data
depends_on:
- bitcoind
bitcoind:
image: btcpayserver/bitcoin:26.0
environment:
BITCOIN_NETWORK: regtest
BITCOIN_EXTRA_ARGS: |
rpcport=43782
rpcbind=0.0.0.0:43782
port=39388
whitelist=0.0.0.0/0
rpcuser=bitcoin
rpcpassword=bitcoin
rpcallowip=0.0.0.0/0
fallbackfee=0.0004
txindex=1
server=1
zmqpubrawblock=tcp://0.0.0.0:38332
zmqpubrawtx=tcp://0.0.0.0:38333
expose:
- '43782'
- '39388'
ports:
- '43782:43782'
- '39388:39388'
volumes:
- './fm_data/bitcoin:/data'
# Uncomment me to test out Dockerfile.guardian-ui locally
# guardian_ui:
# build:
# context: .
# dockerfile: Dockerfile.guardian-ui
# environment:
# - PORT=3001
# - REACT_APP_FM_CONFIG_API=ws://localhost:18184
# expose:
# - '3001'
# ports:
# - '3001:3001'
# Uncomment me to test out Dockerfile.gateway-ui locally
# gateway_ui:
# build:
# context: .
# dockerfile: Dockerfile.gateway-ui
# environment:
# - PORT=3002
# - REACT_APP_FM_GATEWAY_API=http://127.0.0.1:8175
# - REACT_APP_FM_GATEWAY_PASSWORD=thereisnosecondbest
# expose:
# - '3002'
# ports:
# - '3002:3002'