-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yaml
54 lines (49 loc) · 952 Bytes
/
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
version: '2.1'
services:
tor:
image: tor
container_name: tor
build:
context: tor/
dockerfile: Dockerfile
volumes:
- etc_tor:/etc/tor
- var_lib_tor:/var/lib/tor
ports:
- "9050:9050"
lnd:
image: lnd
container_name: lnd
build:
context: lnd/
dockerfile: Dockerfile
volumes:
- ./root_volume/:/root/.lnd
- etc_tor:/etc/tor
- var_lib_tor:/var/lib/tor
ports:
- "9735:9735"
- "10009:10009"
restart: always
depends_on:
tor:
condition: service_healthy
thunderhub:
image: thunderhub
container_name: thunderhub
build:
context: thunderhub/
dockerfile: Dockerfile
volumes:
- ./root_volume:/root/.lnd
ports:
- "3000:3000"
restart: always
depends_on:
tor:
condition: service_healthy
volumes:
etc_tor:
driver: local
var_lib_tor:
driver: local