Skip to content

Personal blockchain for Conflux-chain docker development

License

Notifications You must be signed in to change notification settings

liuis/conflux-docker

 
 

Repository files navigation

Docker Pulls Docker Stars

warning

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.

conflux-docker

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 .

USE:

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:

docker-compose

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.

Single Node Configuraiton

To use a Single Node Configuration just append -f singlenode.yml to the docker-compose command. Example:

docker-compose -f singlenode.yml up

About

Personal blockchain for Conflux-chain docker development

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 64.1%
  • Dockerfile 27.9%
  • Python 8.0%