Run your own "mini" internxt on your local computer with Docker
Make sure you have installed Docker and Docker Compose on your development machine:
- Docker - Download & Install Docker.
- Docker Compose - Download & Install Docker Compose. OSX and Windows machines can install Docker Deskop directly.
To run this project, you have to follow some steps first
This script clone and build: bridge, complex and core-daemon(xcore)
bash setupImages.sh Check if there are new commit in the projects, using this script
bash pullAndBuild.sh Once you have configured correctly your variables, you can run it
docker-compose up -ddocker-compose stopdocker-compose downYou can change your variables in docker-compose.yaml
If you want to add a renter, you have to add a new renter service in docker-compose.yaml and change this variables
renterX: # Service name
image: renter-image
container_name: renterX # Container name
restart: always
environment:
network_private_extended_key_string: # Private key
storjrenter_opts__networkOpts__rpcPort: # Rpc port
storjrenter_opts__networkOpts__rpcAddress: # Your address is your service name
storjrenter_opts__networkOpts__tunnelServerPort: # Tunnel server port
storjrenter_opts__networkOpts__tunnelGatewayRange__min: # Tunnel gateway range min
storjrenter_opts__networkOpts__tunnelGatewayRange__max: # Tunnel gateway range max
storjrenter_opts__totalRenters: # Number of total renters in your network
storjrenter_opts__renterOverlap: # Overlap renter
storjrenter_opts__networkIndex: # Your network index
Change 2 variables in all renters:
- totalRenters
- networkIndex
Make sure that your renter config it's okay, consulting this project Complex-offsets
If you want to add a xcore, change your service name, container name and your EXTERNAL_IP
xcoreX: # Service name
image: xcore-image
container_name: # Container name
restart: always
environment:
EXTERNAL_IP: # Your address is your service name
Here are the detailed steps for creating an HD key for configuration:
// require necessary libs, get entropy, and create a key
const HDKey = require('hdkey');
const seed = require('crypto').randomBytes(64);
const hdkey = HDKey.fromMasterSeed(seed);
// to keep for other future uses
console.log(hdkey.privateExtendedKey);
// deriving the key for complex use (detailed in sip32)
const complexKey = hdkey.derive("m/3000'/0'");
// this will output expected private key used in configs
console.log(complexKey.privateExtendedKey);
// for this config value in complex
let options = {};
options.networkPrivateExtendedKey = complexKey.privateExtendedKey;
// this is the key used in contracts and contacts
console.log(complexKey.publicExtendedKey);
You can interact with them launching two commands
docker exec -it container-name command
Or
docker exec -it container-name /bin/sh