Rome Docs
  • Getting Started
  • Overview of Rome
    • Rome Scales Bitcoin
      • How Rome Scales Bitcoin
    • Rome Scales Ethereum
      • How Rome Scales Ethereum
    • Rome Scales Rollups
      • How Rome Scales Rollups
    • Rome Provides Interop with Cosmos
      • How Rome Provides Interop with Cosmos
  • Rome L2 Setup
    • Setup your L2
      • Choose your Chain ID
      • Download Rome Repos
      • Register your L2
      • Initialize your L2
      • Setup OP Geth Node
      • Run Block Explorer
      • Run on Remote Server
        • Setup Remote Server
        • Setup Certificate
    • Test your L2
      • Setup Metamask
      • Fund your Wallet
      • Check Wallet Balance
      • Do Simple Transfer
      • Run Uniswap (Optional)
  • Rome Interop
    • Rome SDK
    • Rome SDK Setup
      • Prepare Environment
      • Set Configuration
      • Run Rhea Example
      • Run Remus Example
      • Run Romulus Example
    • Remus: Cross-Rollup Atomicity
    • Romulus: Cross-Chain Atomicity
  • Rome EVM
    • How to use Rome EVM
    • RPC Information
    • Tutorial to deploy a smart contract on Rome EVM
  • Nexus: Rome's Based Sequencer
    • How Nexus Works
    • Transaction Flow
  • Shared Sequencer
    • Atomicity
    • Rome Transactions
    • Rhea
    • Hercules
    • Data Availability
    • Settlement
Powered by GitBook
On this page
  • Clone Rome Setup Repo
  • Download Rome Dockers
  • Alternatively, build Docker Images locally

Was this helpful?

  1. Rome L2 Setup
  2. Setup your L2

Download Rome Repos

Download Rome repos and Docker images

Clone Rome Setup Repo

git clone --branch v1.0.0 git@github.com:rome-labs/rome-setup.git

Download Rome Dockers

These images work on Ubuntu, where you won't need to rebuild them.

docker pull romelabs/rollup-op-geth:v1.0.0
docker pull romelabs/rome-apps:v1.0.0
docker pull romelabs/rome-evm:v1.0.0

Alternatively, build Docker Images locally

If you are not running on Ubuntu, build these Docker images locally.

git clone --branch v1.0.0 git@github.com:rome-labs/rome-apps.git
git clone --branch v1.0.0 git@github.com:rome-labs/rome-sdk.git
git clone --branch v1.0.0 git@github.com:rome-labs/rome-evm.git

docker buildx build -t romelabs/rome-apps:v1.0.0 -f rome-apps/docker/Dockerfile .
git clone --branch v1.0.0 git@github.com:rome-labs/rome-rollup-clients.git
git clone --branch v1.0.0 git@github.com:rome-labs/op-geth.git

docker buildx build -t romelabs/rollup-op-geth:v1.0.0 -f ./rome-rollup-clients/op-geth/Dockerfile .
PreviousChoose your Chain IDNextRegister your L2

Last updated 2 days ago

Was this helpful?