This repository contains a Dockerfile for building and running the Nexus Prover in a containerized environment.
- Docker installed on your system
- Git
- A valid prover-id file
- Clone this repository:
git clone https://github.com/Tallone/nexus-docker.git
cd nexus-docker
- Build the Docker image:
docker build -t nexus-prover .
- Run the container:
docker run --name nexus-network -v ./prover-id:/root/.nexus/prover-id nexus-prover
Replace:
./prover-id
with the actual path to your prover-id filenexus-network
with your preferred container name
Common docker commands:
# Stop the container
docker stop nexus-network
# Start the container again
docker start nexus-network
# Remove the container
docker rm nexus-network
# View container logs
docker logs nexus-network
The Dockerfile includes:
- Rust environment setup
- Tsinghua mirrors for faster package downloads in China
- All necessary dependencies (protobuf, openssl, etc.)
- Automatic compilation of the prover binary
You can set the following environment variables when running the container:
docker run --name nexus-network -v ./prover-id:/root/.nexus/prover-id nexus-prover
If you encounter certificate verification issues, make sure your prover-id file is valid and properly mounted in the container.
This project is licensed under the terms specified by the Nexus Network.
Feel free to submit issues and pull requests.