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
docker compose up --detach attempts to start all 5 containers without waiting for the validator to be available. The bridge node times out if it the validator node isn't available in time. This means that a docker compose up --detach invocation may result in 3 running containers and 2 stopped ones (bridge node, beacond)
Proposal
Implement a health check so that the bridge node isn't started until the validator broadcasts that it is running.
Acceptance Criteria
docker compose up --detach always starts up the entire dev stack
The text was updated successfully, but these errors were encountered:
Problem
docker compose up --detach
attempts to start all 5 containers without waiting for the validator to be available. The bridge node times out if it the validator node isn't available in time. This means that adocker compose up --detach
invocation may result in 3 running containers and 2 stopped ones (bridge node, beacond)Proposal
Implement a health check so that the bridge node isn't started until the validator broadcasts that it is running.
Acceptance Criteria
docker compose up --detach
always starts up the entire dev stackThe text was updated successfully, but these errors were encountered: