This repo run the conflux-chain node is the test-mode, just for test/dev environment, don't use this for the fromal online environment.
Docker-compose based configuration to easily run locally deployed dev/test network
if you don't use docker-compose, just docker && if you want build by yourself , just run:
docker build -t conflux-chain:v0.2.4 .
docker pull liqiazero/conflux-chain:v0.2.4
docker run --name conflux-chain -p 12537:12537 -p 32323:32323 -p 32323:32323/udp -p 14629:14629 -p 12539:12539 -p 19629:19629 -d liqiazero/conflux-chain:v0.2.4
if u want use docker-compose, just following:
To start the network:
docker-compose up -d
To destroy the network:
docker-compose down
To cleanup the associated docker volumes, -v
option could be used:
docker-compose down -v
More details can be found in docker-compose
documentation.
To use a Single Node Configuration just append -f singlenode.yml
to the docker-compose command. Example:
docker-compose -f singlenode.yml up