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
  • Nexus: Rome's Based Sequencer
    • How Nexus Works
    • Transaction Flow
  • 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
  • L2 EVM Setup
    • Prepare Config
    • Download Repos
    • Register your L2
    • Initialize your L2
    • Setup OP Geth Node
    • Run Block Explorer
    • Airdrop & Metamask
    • Check L2 State
    • Simple Transfers
    • Uniswap
    • Run on Remote Server
      • Setup AWS Server
      • Setup Certificate
  • Rome EVM
    • How to use Rome EVM
    • RPC Information
    • Tutorial to deploy a smart contract on Rome EVM
  • 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. L2 EVM Setup

Download Repos

Download Rome repos and Docker images

Clone Rome Setup Repo

git clone --branch v0.3.0 --single-branch https://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:v0.3.0
docker pull romelabs/rome-apps:v0.3.0
docker pull romelabs/rome-evm:v0.3.0

Alternatively, build Docker Images locally

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

git clone --branch v0.3.0 https://github.com/rome-labs/rome-apps.git
git clone --branch v0.3.0 https://github.com/rome-labs/rome-sdk.git
git clone --branch v0.3.0 https://github.com/rome-labs/rome-evm.git

docker buildx build -t romelabs/rome-apps:v0.3.0 -f rome-apps/docker/Dockerfile .
git clone --branch v0.3.0 https://github.com/rome-labs/rome-rollup-clients.git
git clone --branch v0.3.0 https://github.com/rome-labs/op-geth.git

docker buildx build -t romelabs/rollup-op-geth:v0.3.0 -f ./rome-rollup-clients/op-geth/Dockerfile .
PreviousPrepare ConfigNextRegister your L2

Last updated 6 months ago

Was this helpful?