KILTprotocol / kilt-node

KILT blockchain node

Home Page:https://kilt.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can't run archival node with Docker

nazar-pc opened this issue · comments

Using following docker-compose.yml:

version: '2'

services:
  kilt-spiritnet:
    image: kiltprotocol/mashnet-node:1.0.0
    ports:
      - 19953:9944 # ws port
    volumes:
      - ./kilt-spiritnet:/data
    command: [
      "--base-path", "/data",
      "--chain", "spiritnet",
      "--pruning", "archive",
      "--ws-external",
      "--rpc-external",
      "--rpc-cors", "all",
    ]

Getting following error:

Error: Input("Error opening spec file: No such file or directory (os error 2)")

I don't understand why, according to source code this should have worked.

This is confusing yes. So the mashnet-node is our very old first testnet. It wasn't parachain based and can be executed on it's own, without a relay chain.
Try using the image kiltprotocol/peregrine:1.0.0.

That one seems to work, thanks!