Working with Docker
There are multiple ways to use Paxeer Network with Docker. If you want to run Paxeer Network inside a Docker setup and possibly connect the Docker container to other containerized compatible blockchain binaries, check out the guide on building a Docker image containing the Paxeer Network binary. If you instead want to generate a binary for use outside of Docker, but want to ensure the correct dependencies are used by building the binary inside a Docker container, then go ahead to the section on building the Paxeer Network binary with Docker. :::note The given instructions have been tested on Ubuntu 18.04.2 LTS with Docker 20.10.2 and macOS 13.2.1 with Docker 20.10.22. :::Prerequisites
General Setup
In order to build Paxeer Network binaries with Docker, it is necessary to- clone the Paxeer Network repository to your local machine (e.g.
git clone [email protected]/Paxeer-Network/Paxeer-Network.git) - checkout the commit, branch, or release tag you want to build (e.g.
git checkout v11.0.2)
Building A Docker Image Containing The Binary
To build a Docker image, that contains the Paxeer Network binary, step into the cloned repository and run the following command in a terminal session:tharsishq/Paxeer-Network and the version tag latest.
Now it is possible to run the hyperpaxd binary in the container, e.g. evaluating its version:
Building The Binary With Docker
It is possible to build thehyperpaxd binary deterministically using Docker.
The container system that Docker provides offers the ability
to create an instance of the Paxeer Network binary in an isolated environment.
Building the Image
Run the following command to launch a build for all supported architectures (currently linux/amd64):artifacts directory.
The artifacts/build_report file contains the list of the build artifacts and their respective checksums,
and can be used to verify build sanity. An example of its contents follows:
Builder Image
The Tendermint builder Docker image provides a deterministic build environment that is used to build Cosmos SDK applications. It provides a way to be reasonably sure that the executables are really built from the git source. It also makes sure that the same, tested dependencies are used and statically built into the executable.Now that you have built the Paxeer Network binary, either for local use or in a Docker container, you’ll find information to run a node instance in the following section on setting up a local network.