Deployment guide

1, Create the code directory:

mkdir -p /project/aixc

2, Create docker-compose.yml file

cd /project/aixc

touch docker-compose.yml

Fill below content to docker-compose.yml

// docker-compose.yml
version: "3.5"

services:
  Aixchain:
    image: aixchain/corechain:latest
    ports:
      - "16666-16669:16666-16669/tcp"
      - "16666-16669:16666-16669/udp"
    volumes:
      - .:/node
    command:
      - --witness

3, Config Mainnet

cd /project/aixc

touch config.conf

Fill below configuration to config.conf

4, Run node

cd /project/aixc

docker-compose up -d

The data will be stored into output-directory. Check the log file logs/tron.log to monitor syncing process and producing block process.

Last updated