Unibase Docs
  • Introduction
    • Architecture
    • Core Components
    • Quick Start
  • Membase
    • 📚Architecture
    • Identity
    • Multi Memory
    • Authorization
    • 🚀Quick Start
  • AIP
    • Design
    • Agent Interaction Process
    • Implementation
    • Quick Start
      • Tool
      • Agent
        • Agent-Tool Interaction Via gRPC
        • Agent-Tool Interaction Via SSE
        • Agent-Agent Interaction
      • Chess game
  • Unibase DA
    • DA
    • Storage
    • Quick Start
      • Nodes boostrap
        • Storage Node
        • Validator Node
        • Stream Node
        • Docker
      • Nodes operations
  • Developers
    • Hub
    • SDK
    • API Reference
  • Alpha Testing
    • Testing plan
    • Requirements
    • Chains
  • 🚀Examples
  • AIP Whitepaper
Powered by GitBook
On this page
  • storage node
  • stream
  • validator
  • hub
  1. Unibase DA
  2. Quick Start
  3. Nodes boostrap

Docker

docker startup will automatically init and run

storage node

services:
  dimo-store:
    image: mossv2/dimo:store-latest
    ports:
      - 8080:8080
    volumes:
      - /home/ubuntu/data/hub:/data
      - /home/ubuntu/.plonk:/root/.plonk
    restart: on-failure:0
    environment:
      CHAIN_TYPE: ""  # opbnb-testnet or op-sepolia
      MAX_SIZE: "100GB" # max storage 
networks:
  default:
    driver: bridge

stream

services:
  dimo-stream:
    image: mossv2/dimo:stream-latest
    ports:
      - 8080:8080
    volumes:
      - /home/ubuntu/data/stream:/data
      - /home/ubuntu/.plonk:/root/.plonk
    restart: on-failure:0
    environment:
      CHAIN_TYPE: ""  # opbnb-testnet or op-sepolia
      EXPOSE_URL: ""  # required
networks:
  default:
    driver: bridge

validator

services:
  dimo-validator:
    image: mossv2/dimo:validator-latest
    ports:
      - 8080:8080
    volumes:
      - /home/ubuntu/data/validator:/data
      - /home/ubuntu/.plonk:/root/.plonk
    restart: on-failure:0
    environment:
      CHAIN_TYPE: ""  # opbnb-testnet or op-sepolia
networks:
  default:
    driver: bridge

hub

services:
  dimo-hub:
    image: mossv2/dimo:hub-latest
    ports:
      - 8080:8080
    volumes:
      - /home/ubuntu/data/hub:/data
    restart: on-failure:0
    environment:
      CHAIN_TYPE: "" # opbnb-testnet or op-sepolia
      EXPOSE_URL: "" # required
      MAX_SIZE: "4MB" # file max size 
networks:
  default:
    driver: bridge
PreviousStream NodeNextNodes operations

Last updated 21 days ago