forked from BitPolito/bitcoin-testing-tools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose_miner_signet.yml
100 lines (91 loc) · 1.81 KB
/
docker-compose_miner_signet.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
version: "3.6"
services:
# tor:
# container_name: tor
# build:
# context: tor
# image: tor_img
# network_mode: "host"
# expose:
# - "9050"
# - "9051"
btc_sig_miner:
container_name: btc_sig_miner
build:
context: bitcoind_signet_miner_plugnplay
image: bitcoind_signet_miner
volumes:
- shared_vol_btc:/bitcoind
network_mode: "host"
expose:
- "38333"
- "38332"
- "28334"
- "28333"
- "28332"
ports:
- "38333:38333"
- "38332:38332"
- "28334:28334"
- "28333:28333"
- "28332:28332"
# electrs:
# container_name: electrs
# build:
# context: electrs
# image: electrs_img
# volumes:
# - shared_vol_btc:/bitcoind
# network_mode: "host"
# expose:
# - "60601"
# nginx:
# container_name: nginx
# build:
# context: nginx
# image: nginx_img
# network_mode: "host"
# expose:
# - "60602"
# c-lightning:
# container_name: c-lightning
# build:
# context: c-lightning
# image: core_lightning
# volumes:
# - shared_vol_ln:/lightningd
# network: "default"
# expose:
# - "39735"
# - "3092"
# faucet:
# container_name: faucet
# build:
# context: faucet
# image: faucet_img
# network_mode: "host"
# expose:
# - "5000"
# lnbits:
# container_name: lnbits
# build:
# context: lnbits
# image: lnbits_img
# volumes:
# - shared_vol_ln:/lightningd
# network_mode: "host"
# expose:
# - "7000"
# rtl:
# container_name: rtl
# build:
# context: rtl
# image: rtl_img
# volumes:
# - shared_vol_ln:/lightningd
# network_mode: "host"
# expose:
# - "3000"
volumes:
shared_vol_btc:
shared_vol_ln: