https://github.com/pana/conflux-docker-new
https://github.com/pana/conflux-docker-new
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pana/conflux-docker-new
- Owner: Pana
- Created: 2020-06-28T09:50:43.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T03:15:17.000Z (over 2 years ago)
- Last Synced: 2025-02-12T06:55:26.943Z (8 months ago)
- Language: JavaScript
- Size: 54.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
conflux-rust-docker
===
Conflux-rust is a implementation of the Conflux protocol with Rust.
This is the docker image of Conflux-rust.# Warning
Only use this image run a test/dev mode conflux-chain, don't use this for the formal online environment.
When node runs up, it will init 10 genesis account, each with 1000 CFX.## Tags
* 0.5.0.2
## How to run
```sh
$ docker pull pana/conflux-rust
```#### Simple run a node in frontground
```sh
$ docker run -p 12537:12537 --name cfx-node pana/conflux-rust
```#### Run with local config and data
You can attach a folder on local machine to container, in which folder should include conflux config file, or even genesis_secret, genesis_account file。When conflux client run up, chain data will also save to this folder。```sh
$ docker run -p 12537:12537 -v $(pwd)/run:/root/run --name cfx-node pana/conflux-rust
```