Zcash intends to offer a high standard of privacy through a zero-knowledge proving scheme.
2.1K
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
docker run -it --name=zcash-docker
-v /path/to/.zcash:/root/.zcash
bcrd/zcash
#docker-compose.yml
version: '3.2'
services:
zcash:
image: bcrd/zcash-testnet:v2.0.0
container_name: zcash
tty: true
volumes:
- zcashtestdata:/root/.zcash
ports:
- "127.0.0.1:18232:18232"
volumes:
zcashtestdata:
driver: local
driver_opts:
type: bind
device: $PWD/.zcash # Change this to the right path!!!
o: bind
| Action | Command |
|---|---|
| Run | docker-compose up -d |
| Check status | docker logs zcash -f |
| Access | docker-compose exec zcash bash |
Content type
Image
Digest
Size
3.2 GB
Last updated
about 7 years ago
docker pull bcrd/zcash