-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose_a-4.yml
149 lines (138 loc) · 2.91 KB
/
docker-compose_a-4.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
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
version: '2.4'
services:
# wordpress service
onionweb: # address.onion
image: wordpress
restart: always
depends_on:
- oniondb
- tor
expose:
- 80
environment:
admin: admin:xxxxxx
WORDPRESS_DB_NAME: onionweb
WORDPRESS_DB_HOST: oniondb:3306
WORDPRESS_DB_USER: onionweb
WORDPRESS_DB_PASSWORD: xxxxxx
# set HTTP_PROXY to tor to ensure you do not leak your ip address
http_proxy: http://tor:8118
https_proxy: http://tor:8118
HTTP_PROXY: http://tor:8118
HTTPS_PROXY: http://tor:8118
volumes:
- ./wordpress/onionweb:/var/www/html
networks:
tor: # set ip here that you will pass to your torrc
ipv4_address: 10.6.0.105
db:
# wordpress database service
oniondb:
image: mariadb
container_name: oniondb_build
networks:
- db
volumes:
- ./wordpress/oniondb:/var/lib/mysql
restart: always
expose:
- "3306"
environment:
MYSQL_DATABASE: onionweb
MYSQL_USER: onionweb
MYSQL_PASSWORD: xxxxxx
MYSQL_ROOT_PASSWORD: xxxxxx
# tor service
tor:
build: ./tor/build
container_name: tor_build
restart: always
ports:
# binds to localhost, setting 9050:9050 will interfere with local tor service
- 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:
# bitcoin service
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:
# lightning service
lnd:
build: ./lnd
container_name: lnd_build
stop_grace_period: 5m
depends_on:
- bitcoind
- tor
restart: always
volumes:
- ./lnd/lnd:/lnd
- ./lnd/backup:/backup
- ./tor/lib:/var/lib/tor
networks:
- bitcoinint
- bitcoin
- tor
ports:
- 9911:9911
- 9735:9735
- 10009:10009
- 8080:8080
expose:
- 8080
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
db:
internal: true
ipam:
config:
- subnet: 10.11.0.0/16