You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Launch the OP chain explorer
l2-explorer-start:
@$(CURDIR)/scripts/l2-blockscout/l2-blockscout-set-env.sh
docker compose -f docker/docker-compose-l2-explorer.yml up -d backend-db stats-db
sleep 5
docker compose -f docker/docker-compose-l2-explorer.yml up -d backend frontend stats smart-contract-verifier visualizer sig-provider visualizer-proxy proxy
ideally, we shouldn't need to specify all the service names. should just be
## Launch the OP chain explorer
l2-explorer-start:
@$(CURDIR)/scripts/l2-blockscout/l2-blockscout-set-env.sh
docker compose -f docker/docker-compose-l2-explorer.yml up -d
we are only doing this b/c there are a few db services needs to be started first
is there a better way to do this? e.g. use depends_on and health check
The text was updated successfully, but these errors were encountered:
in the Makefile (see #11) we have
ideally, we shouldn't need to specify all the service names. should just be
we are only doing this b/c there are a few db services needs to be started first
is there a better way to do this? e.g. use depends_on and health check
The text was updated successfully, but these errors were encountered: