File tree 3 files changed +67
-62
lines changed
bitcoind_signet_miner_plugnplay
3 files changed +67
-62
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ RUN DEBIAN_FRONTEND=noninteractive \
9
9
python3 python3-pip python3-setuptools && \
10
10
pip install argparse requests cryptography pipreqs
11
11
12
+ RUN DEBIAN_FRONTEND=noninteractive \
13
+ apt-get -y install python3.9
14
+
12
15
# Install bitcoind
13
16
ENV BITCOIND_VER="24.0.1"
14
17
COPY bitcoind-download.sh /usr/local/bin
@@ -31,7 +34,9 @@ COPY bitcoind /data
31
34
COPY download-minig-framework.sh /usr/local/bin
32
35
RUN chmod +x /usr/local/bin/download-minig-framework.sh
33
36
RUN download-minig-framework.sh -s "test/functional/test_framework" -d "/data/test/functional/test_framework"
37
+ RUN download-minig-framework.sh -s "test/functional/test_framework/crypto" -d "/data/test/functional/test_framework/crypto"
34
38
RUN download-minig-framework.sh -s "contrib/signet" -d "/data/contrib/signet"
39
+ RUN sed -i 's/env python3/env python3.9/' /data/contrib/signet/miner
35
40
RUN pipreqs /data/test/functional/test_framework
36
41
RUN pip install -r /data/test/functional/test_framework/requirements.txt
37
42
Original file line number Diff line number Diff line change @@ -43,17 +43,17 @@ services:
43
43
expose :
44
44
- " 60602"
45
45
46
- c-lightning :
47
- container_name : c-lightning
48
- build :
49
- context : c-lightning
50
- image : core_lightning
51
- volumes :
52
- - shared_vol_ln:/lightningd
53
- network_mode : " host"
54
- expose :
55
- - " 39735"
56
- - " 3092"
46
+ # c-lightning:
47
+ # container_name: c-lightning
48
+ # build:
49
+ # context: c-lightning
50
+ # image: core_lightning
51
+ # volumes:
52
+ # - shared_vol_ln:/lightningd
53
+ # network_mode: "host"
54
+ # expose:
55
+ # - "39735"
56
+ # - "3092"
57
57
58
58
faucet :
59
59
container_name : faucet
@@ -64,27 +64,27 @@ services:
64
64
expose :
65
65
- " 5000"
66
66
67
- lnbits :
68
- container_name : lnbits
69
- build :
70
- context : lnbits
71
- image : lnbits_img
72
- volumes :
73
- - shared_vol_ln:/lightningd
74
- network_mode : " host"
75
- expose :
76
- - " 7000"
67
+ # lnbits:
68
+ # container_name: lnbits
69
+ # build:
70
+ # context: lnbits
71
+ # image: lnbits_img
72
+ # volumes:
73
+ # - shared_vol_ln:/lightningd
74
+ # network_mode: "host"
75
+ # expose:
76
+ # - "7000"
77
77
78
- rtl :
79
- container_name : rtl
80
- build :
81
- context : rtl
82
- image : rtl_img
83
- volumes :
84
- - shared_vol_ln:/lightningd
85
- network_mode : " host"
86
- expose :
87
- - " 3000"
78
+ # rtl:
79
+ # container_name: rtl
80
+ # build:
81
+ # context: rtl
82
+ # image: rtl_img
83
+ # volumes:
84
+ # - shared_vol_ln:/lightningd
85
+ # network_mode: "host"
86
+ # expose:
87
+ # - "3000"
88
88
89
89
volumes :
90
90
shared_vol_btc :
Original file line number Diff line number Diff line change @@ -43,39 +43,39 @@ services:
43
43
expose :
44
44
- " 60602"
45
45
46
- c-lightning :
47
- container_name : c-lightning
48
- build :
49
- context : c-lightning
50
- image : core_lightning
51
- volumes :
52
- - shared_vol_ln:/lightningd
53
- network_mode : " host"
54
- expose :
55
- - " 39735"
56
- - " 3092"
46
+ # c-lightning:
47
+ # container_name: c-lightning
48
+ # build:
49
+ # context: c-lightning
50
+ # image: core_lightning
51
+ # volumes:
52
+ # - shared_vol_ln:/lightningd
53
+ # network_mode: "host"
54
+ # expose:
55
+ # - "39735"
56
+ # - "3092"
57
57
58
- lnbits :
59
- container_name : lnbits
60
- build :
61
- context : lnbits
62
- image : lnbits_img
63
- volumes :
64
- - shared_vol_ln:/lightningd
65
- network_mode : " host"
66
- expose :
67
- - " 7000"
58
+ # lnbits:
59
+ # container_name: lnbits
60
+ # build:
61
+ # context: lnbits
62
+ # image: lnbits_img
63
+ # volumes:
64
+ # - shared_vol_ln:/lightningd
65
+ # network_mode: "host"
66
+ # expose:
67
+ # - "7000"
68
68
69
- rtl :
70
- container_name : rtl
71
- build :
72
- context : rtl
73
- image : rtl_img
74
- volumes :
75
- - shared_vol_ln:/lightningd
76
- network_mode : " host"
77
- expose :
78
- - " 3000"
69
+ # rtl:
70
+ # container_name: rtl
71
+ # build:
72
+ # context: rtl
73
+ # image: rtl_img
74
+ # volumes:
75
+ # - shared_vol_ln:/lightningd
76
+ # network_mode: "host"
77
+ # expose:
78
+ # - "3000"
79
79
80
80
volumes :
81
81
shared_vol_btc :
You can’t perform that action at this time.
0 commit comments