Commit ec89eb7f authored by mergify[bot]'s avatar mergify[bot] Committed by GitHub

Merge pull request #4641 from ethereum-optimism/willc/devnet-ui

feat(ops-bedrock): Add gateway ui to make devnet-up
parents ddb52f7a c4b04b6e
......@@ -31,6 +31,7 @@ set -eu
L1_URL="http://localhost:8545"
L2_URL="http://localhost:9545"
GATEWAY_URL="http://localhost:3000"
OP_NODE="$PWD/op-node"
CONTRACTS_BEDROCK="$PWD/packages/contracts-bedrock"
......@@ -108,6 +109,10 @@ SEQUENCER_BATCH_INBOX_ADDRESS="$(cat $DEVNET/rollup.json | jq -r '.batch_inbox_a
echo "Bringing up stateviz webserver..."
docker-compose up -d stateviz
echo "Bringing up gateway-ui..."
docker-compose up -d gateway-ui
wait_up $GATEWAY_URL
)
echo "Devnet ready."
......@@ -145,3 +145,8 @@ services:
- "9090:8080"
volumes:
- op_log:/op_log:ro
gateway-ui:
image: ethereumoptimism/gateway-frontend:latest
ports:
- "3000:80"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment