-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose_a-2.yml
72 lines (64 loc) · 1.22 KB
/
docker-compose_a-2.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
version: '2.4'
services:
tor:
build: ./tor/build
container_name: tor_build
restart: always
ports:
- 127.0.0.1:8050:9050
- 127.0.0.1:8051:9051
- 127.0.0.1:8118:8118
expose:
- 9050
- 9051
- 8118
volumes:
- ./tor/etc:/etc/tor
# # chown -R root ./tor/lib
- ./tor/lib:/var/lib/tor
networks:
tor:
ipv4_address: 10.6.0.50
torext:
bitcoind:
build: ./bitcoin
stop_grace_period: 5m
#command: echo "Bitcoin disabled"
restart: always
#stop_grace_period : 1m30s
#stop_signal : SIGINT
depends_on:
- tor
container_name: bitcoin_build
expose:
- 8332
- 8333
- 28332
ports:
- 8333:8333
volumes:
- ./bitcoin/bitcoin:/bitcoin
- ./tor/lib:/var/lib/tor
networks:
bitcoinint:
ipv4_address: 10.19.0.10
tor:
ipv4_address: 10.6.0.51
bitcoin:
networks:
tor:
internal: true
ipam:
config:
- subnet: 10.6.0.0/16
torext:
ipam:
config:
- subnet: 10.9.0.0/16
bitcoinint:
ipam:
config:
- subnet: 10.19.0.0/16
internal: true
bitcoin:
external: true