File tree 2 files changed +101
-1
lines changed
2 files changed +101
-1
lines changed Original file line number Diff line number Diff line change
1
+ version : " 3.6"
2
+
3
+ services :
4
+ # tor:
5
+ # container_name: tor
6
+ # build:
7
+ # context: tor
8
+ # image: tor_img
9
+ # network_mode: "host"
10
+ # expose:
11
+ # - "9050"
12
+ # - "9051"
13
+
14
+ btc_sig_miner :
15
+ container_name : btc_sig_miner
16
+ build :
17
+ context : bitcoind_signet_miner_plugnplay
18
+ image : bitcoind_signet_miner
19
+ volumes :
20
+ - shared_vol_btc:/bitcoind
21
+ network_mode : " host"
22
+ expose :
23
+ - " 38333"
24
+ - " 38332"
25
+ - " 28334"
26
+ - " 28333"
27
+ - " 28332"
28
+ ports :
29
+ - " 38333:38333"
30
+ - " 38332:38332"
31
+ - " 28334:28334"
32
+ - " 28333:28333"
33
+ - " 28332:28332"
34
+
35
+ # electrs:
36
+ # container_name: electrs
37
+ # build:
38
+ # context: electrs
39
+ # image: electrs_img
40
+ # volumes:
41
+ # - shared_vol_btc:/bitcoind
42
+ # network_mode: "host"
43
+ # expose:
44
+ # - "60601"
45
+
46
+ # nginx:
47
+ # container_name: nginx
48
+ # build:
49
+ # context: nginx
50
+ # image: nginx_img
51
+ # network_mode: "host"
52
+ # expose:
53
+ # - "60602"
54
+
55
+ # c-lightning:
56
+ # container_name: c-lightning
57
+ # build:
58
+ # context: c-lightning
59
+ # image: core_lightning
60
+ # volumes:
61
+ # - shared_vol_ln:/lightningd
62
+ # network: "default"
63
+ # expose:
64
+ # - "39735"
65
+ # - "3092"
66
+
67
+ # faucet:
68
+ # container_name: faucet
69
+ # build:
70
+ # context: faucet
71
+ # image: faucet_img
72
+ # network_mode: "host"
73
+ # expose:
74
+ # - "5000"
75
+
76
+ # lnbits:
77
+ # container_name: lnbits
78
+ # build:
79
+ # context: lnbits
80
+ # image: lnbits_img
81
+ # volumes:
82
+ # - shared_vol_ln:/lightningd
83
+ # network_mode: "host"
84
+ # expose:
85
+ # - "7000"
86
+
87
+ # rtl:
88
+ # container_name: rtl
89
+ # build:
90
+ # context: rtl
91
+ # image: rtl_img
92
+ # volumes:
93
+ # - shared_vol_ln:/lightningd
94
+ # network_mode: "host"
95
+ # expose:
96
+ # - "3000"
97
+
98
+ volumes :
99
+ shared_vol_btc :
100
+ shared_vol_ln :
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ EXPOSE 38333/tcp
56
56
EXPOSE 38332/tcp
57
57
# zmqpubrawblock
58
58
EXPOSE 28332/tcp
59
- # zmqpubhashblock
59
+ EXPOSE 28333/tcp
60
60
EXPOSE 28334/tcp
61
61
62
62
WORKDIR /bitcoind
You can’t perform that action at this time.
0 commit comments