poma / zcash

Zcash docker image

Home Page:https://hub.docker.com/r/andyceo/zcash/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Zcash full node Docker Cloud Build Status

Download zcash parameters

docker run --rm -v /data/zcash/.zcash-params:/root/.zcash-params:rw --entrypoint zcash-fetch-params poma/zcash

Run

docker run -d -v /data/zcash/.zcash-params:/root/.zcash-params:ro -v /data/zcash/.zcash:/root/.zcash:rw -p 8233:8233 -p 127.0.0.1:8232:8232 poma/zcash

Example docker-compose.yml

version: '2'

services:
  zcash:
    image: poma/zcash
    restart: always
    ports:
      - 127.0.0.1:8232:8232
      - 8233:8233
    volumes: 
      - /data/zcash/.zcash-params:/root/.zcash-params:ro
      - /data/zcash/.zcash:/root/.zcash:rw

Releases

Will be the same as Zcash releases: https://github.com/zcash/zcash/releases

About

Zcash docker image

https://hub.docker.com/r/andyceo/zcash/


Languages

Language:Dockerfile 100.0%