Skip to content

Docker image for a NEM NODE. A NEM NODE or NIS is what you will want to run if you are trying to set up a supernode or a full node for NEM, the Smart Asset Blockchain

License

Notifications You must be signed in to change notification settings

criptalia/nem-node

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NEM NODE (NIS) Docker

To run for mainnet:

docker run -d -p 7890:7890 -p 7778:7778 -v /nem-node/mainnet:/root/nem --name nem-mainnet criptalia/nem-node

To run testnet:

docker run -e NEM_NETWORK=testnet -d -p 7890:7890 -p 7778:7778 -v /nem-node/testnet:/root/nem --name nem-testnet criptalia/nem-node

To run with docker-compose:

---
version: '3'

services:

  nem-node:
    image: criptalia/nem-node
    volumes:
      - ./docker_nem_data:/root/nem
    environment:
      NEM_NETWORK: testnet
    ports:
      - '7890:7890'
      - '7778:7778'

Environment variables

  • NEM_NETWORK (default: mainnet) - Set to 'mainnet' to use the live network or 'testnet' for testing.
  • JAVA_OPTS (default: -Xms512M -Xmx1G) - Java Virtual Machine optional parameters

About

Docker image for a NEM NODE. A NEM NODE or NIS is what you will want to run if you are trying to set up a supernode or a full node for NEM, the Smart Asset Blockchain

Resources

License

Stars

Watchers

Forks

Packages

No packages published