Sign inSign up

bcrd/zcash-tor

By bcrd

Updated over 6 years ago

Zcash over TOR - Overwinter | Zcash node with a TOR proxy running by default.

Image
1

2.1K

bcrd/zcash-tor repository overview

Zcash over TOR - Overwinter

Latest: Zcash 2.0.0

This release is consensus-compatible with the Sapling network upgrade, and so we’re encouraging all users and miners to upgrade as soon as possible. The first block of Sapling will be block 419200, which is expected to be mined on the 28th of October 2018, the second anniversary of Zcash’s official launch. You can read more about the Sapling network upgrade here or on the Sapling Network Upgrade page.

This container contains all files and proving keys to run zcash. The docker container will sync the chain to the folder you create as a volume.

Before you run:

Create a folder for the zcash config file and data directory. see the zcash user guide

Run as container


docker run -it --name=zcash-tor-docker
-v /path/to/.zcash:/root/.zcash
bcrd/zcash-tor

Docker Compose


  • create folder .zcash
  • create file docker-compose.yml

#docker-compose.yml

version: '3.2'
services:
  zcash:
    image: bcrd/zcash-tor:latest
    container_name: zcash
    tty: true
    volumes:
      - zcashtordata:/root/.zcash
    ports:
      - "127.0.0.1:18232:18232"

volumes:
  zcashtordata:
    driver: local
    driver_opts:
      type: bind
      device: $PWD/.zcash  # Change this to the right path!!!
      o: bind

ActionCommand
Rundocker-compose up -d
Check statusdocker logs zcash-tor -f
Accessdocker-compose exec zcash-tor bash

Tag summary

Content type

Image

Digest

Size

2.7 GB

Last updated

over 6 years ago

docker pull bcrd/zcash-tor