-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
executable file
·176 lines (170 loc) · 3.84 KB
/
docker-compose.yaml
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
services:
tor:
image: r0shii/tor:dev
pull_policy: always
build:
pull: true
context: tor
container_name: tor
networks:
private:
ipv4_address: 10.3.1.2
volumes:
- tor:/var/lib/tor
restart: unless-stopped
bitcoin:
image: r0shii/bitcoin:dev
pull_policy: always
build:
pull: true
args:
bitcoin_version_tag: v23.0
context: bitcoin
container_name: bitcoin
depends_on:
- tor
networks:
private:
ipv4_address: 10.3.1.3
volumes:
- bitcoin:/var/lib/bitcoin
- tor:/var/lib/tor:ro
- ${BITCOIN_BLOCKS_MOUNTPOINT:-.data/bitcoin/.blocks}:/blocks
- ${BITCOIN_DATA_MOUNTPOINT:-.data/bitcoin}:/home/bitcoin/.bitcoin
restart: unless-stopped
joinmarket:
image: r0shii/joinmarket:dev
pull_policy: always
build:
pull: true
args:
joinmarket_version_tag: v0.9.8
context: joinmarket
container_name: joinmarket
depends_on:
bitcoin:
condition: service_healthy
networks:
- private
volumes:
- bitcoin:/var/lib/bitcoin:ro
- tor:/var/lib/tor:ro
- ${JOINMARKET_DATA_MOUNTPOINT:-.data/joinmarket}:/srv
lnd:
image: r0shii/lnd:dev
pull_policy: always
build:
pull: true
args:
lnd_version_tag: v0.15.1-beta
lit_version_tag: v0.8.0-alpha
context: lnd
container_name: lnd
depends_on:
bitcoin:
condition: service_healthy
networks:
- private
volumes:
- bitcoin:/var/lib/bitcoin:ro
- tor:/var/lib/tor:ro
- ${LND_DATA_MOUNTPOINT:-.data/lnd}:/home/lnd/.lnd
ports:
- "8443:8443"
lndconnect:
image: r0shii/lndconnect:dev
pull_policy: always
build:
pull: true
args:
version: latest
context: lndconnect
container_name: lndconnect
depends_on:
lnd:
condition: service_healthy
networks:
- private
volumes:
- tor:/var/lib/tor:ro
- ${LND_DATA_MOUNTPOINT:-.data/lnd}:/home/lndconnect/.lnd:rw
pool:
image: r0shii/pool:dev
pull_policy: always
build:
pull: true
args:
SERVICE: pool
VERSION_TAG: v0.5.8-alpha
context: lnlabs
container_name: pool
depends_on:
lnd:
condition: service_healthy
networks:
- private
volumes:
- ${LND_DATA_MOUNTPOINT:-.data/lnd}:/home/pool/.lnd:ro
- ${POOL_DATA_MOUNTPOINT:-.data/pool}:/home/pool/.pool
loop:
image: r0shii/loop:dev
pull_policy: always
build:
pull: true
args:
SERVICE: loop
VERSION_TAG: v0.20.1-beta
context: lnlabs
container_name: loop
depends_on:
lnd:
condition: service_healthy
networks:
- private
volumes:
- ${LND_DATA_MOUNTPOINT:-.data/lnd}:/home/loop/.lnd:ro
- ${LOOP_DATA_MOUNTPOINT:-.data/loop}:/home/loop/.loop
faraday:
image: r0shii/faraday:dev
pull_policy: always
build:
pull: true
args:
SERVICE: faraday
VERSION_TAG: v0.2.8-alpha
context: lnlabs
container_name: faraday
depends_on:
lnd:
condition: service_healthy
networks:
- private
volumes:
- ${LND_DATA_MOUNTPOINT:-.data/lnd}:/home/faraday/.lnd:ro
- ${FARADAY_DATA_MOUNTPOINT:-.data/faraday}:/home/faraday/.faraday
lit:
image: r0shii/lit:dev
pull_policy: always
build:
pull: true
args:
version: v0.8.0-alpha
context: lit
container_name: lit
depends_on:
lnd:
condition: service_healthy
networks:
- private
volumes:
- ${LND_DATA_MOUNTPOINT:-.data/lnd}:/home/lit/.lnd:ro
- ${LIT_DATA_MOUNTPOINT:-.data/lit}:/home/lit/.lit
networks:
private:
driver: bridge
ipam:
config:
- subnet: 10.3.1.0/24
volumes:
tor:
bitcoin: