Skip to content

Commit 9ab0d6c

Browse files
feat: disabled other service than btc_signet_miner
1 parent 9d079a4 commit 9ab0d6c

File tree

2 files changed

+101
-1
lines changed

2 files changed

+101
-1
lines changed

docker-compose_miner_signet.yml

+100
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
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:

miner_signet/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ EXPOSE 38333/tcp
5656
EXPOSE 38332/tcp
5757
# zmqpubrawblock
5858
EXPOSE 28332/tcp
59-
# zmqpubhashblock
59+
EXPOSE 28333/tcp
6060
EXPOSE 28334/tcp
6161

6262
WORKDIR /bitcoind

0 commit comments

Comments
 (0)