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 .

Last updated