Local Deployment (`docker compose`)
Overview
For those seeking to evaluate their infrastructure and to get a clearer picture of what a "working" implementation looks like, we have made available a docker config that will allow for evaluation of the various components of the protocol needed to gain initial familiarity with the system.
services:
nitro:
image: ghcr.io/espressosystems/nitro-espresso-integration/nitro-node:integration
container_name: nitro-node
ports:
- "8547:8547"
- "8548:8548"
- "8549:8549"
command: --conf.file /config/full_node.json
volumes:
- ./config:/config
- ./wasm:/home/user/wasm/
- ./database:/home/user/.arbitrum
depends_on:
- validation_node
validation_node:
image: ghcr.io/espressosystems/nitro-espresso-integration/nitro-node:integration
container_name: validation_node
ports:
- "8949:8549"
volumes:
- ./config:/config
entrypoint: /usr/local/bin/nitro-val
command: --conf.file /config/validation_node_config.json
Last updated