forked from TryQuiet/zbay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
40 lines (37 loc) · 952 Bytes
/
docker-compose.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
version: '3.7'
services:
znode-mainnet:
image: rumblefish1337/zcashblockchain:v3.1.0-rc1
tty: true
ports:
- 8334:8334
volumes:
- ./zcash/dockermainnet.conf:/root/.zcash/zcash.conf
command: bash -c "/znode/zcashd -debug -txexpirydelta=18000 -checklevel=0 -checkblocks=10 -dbcache=500"
znode-testnet:
image: rumblefish1337/zcashblockchain:v2.1.1-1-fork
tty: true
ports:
- 8334:8334
volumes:
- ./zcash/testnet.conf:/root/.zcash/zcash.conf
command: bash -c "/znode/zcashd -debug -txexpirydelta=18000 -checklevel=0 -checkblocks=10 -dbcache=500"
networks:
vpcbr:
ipv4_address: 10.3.0.2
# depends_on:
# - tor-socks
tor-socks:
container_name: tor-socks
image: tor-socks
ports:
- '9050:9050'
networks:
vpcbr:
ipv4_address: 10.3.0.3
networks:
vpcbr:
driver: bridge
ipam:
config:
- subnet: 10.3.0.0/16