-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose_node_signet.yml
82 lines (74 loc) · 1.37 KB
/
docker-compose_node_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
version: "3.3"
services:
tor:
container_name: tor
build:
context: tor
image: tor_img
network_mode: "host"
expose:
- "9050"
- "9051"
btc_sig_node:
container_name: btc_sig_node
build:
context: bitcoind_signet_node
image: bitcoind_signet_node
volumes:
- shared_vol_btc:/bitcoind
network_mode: "host"
expose:
- "38333"
- "38332"
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_mode: "host"
expose:
- "39735"
- "3092"
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: