Run Rome Apps

Run docker containers sequentially in the following order:

Run Rome EVM then wait for deployment and initialization

cd rome-apps/docker
docker-compose up rome-evm # wait for container to complete and exit

Check the Solana slot

solana slot

Update start_slot in proxy-config.yml

Run Light Client

docker-compose up proxy -d
docker logs proxy -f # wait for proxy started

Run Geth

docker-compose up geth -d
docker logs geth -f # wait for server listening at http://localhost:3000

Run Rhea

docker-compose up rhea -d
docker logs rhea -f

The docker containers are listed below:

Docker ContainerPurpose

rome-evm

Deploys and initializes EVM

proxy

Rome Light Client App

geth

OP Geth App

rhea

Rhea App

Alternatively, run all docker containers with one command:

cd rome-apps/docker
# docker compose down
docker-compose up -d

Last updated