Skip to content

nnslvp/raptoreum-node

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

71 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Raptoreum Node Docker

Docker container for running a Raptoreum node.

Quick Start

Build the Docker Image

Build the Docker image:

docker build -t raptoreum-node .

Run the Docker Container

Replace <your_IP> with your external IP address and run:

docker run \
  -d \
  -p 10225:10225 \
  -p 10226:10226 \
  --name raptoreum_node \
  -e RPC_USER=<your_rpc_user> \
  -e RPC_PASSWORD=<your_rpc_password> \
  -e EXTERNALIP=<your_IP> \
  -v raptoreum:/raptoreum \
  --restart=unless-stopped \
  raptoreum_node

Environment Variables

  • RPC_USER: RPC username
  • RPC_PASSWORD: RPC password
  • TESTNET: Set to 1 for testnet, 0 for mainnet
  • EXTERNALIP: Your external IP address
  • FORCE_BOOTSTRAP: Set to 1 to force bootstrap
  • RPC_ALLOW_IP: Allow RPC from IP address

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 91.8%
  • Dockerfile 8.2%