3.5 Docker Configuration

We have a pre-built docker image hosted on dockerhub. Pull the image with

docker pull spicenet/node:v0.1.0

The container needs volume on the host system to work uninterrupted, so the file structure should look like this

  • App

    • celestia_rollup_config.toml

    • test-data

      • genesis

        • celestia

celestia_rollup_config.toml and test-data can be found in the validator repo (here) at the root.

Run the docker container with

docker run -it -v $(pwd):/app spicenet/node:v0.1.0 --da-layer celestia --rollup-config-path ./celestia_rollup_config.toml --genesis-config-dir ./test-data/genesis/celestia

Last updated

Was this helpful?