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
I have run into an issue running docker compose up. The db-init container spawns, completes and shuts down befor the db container is ready, resulting in the container cluster to fail startup.
I have found two workarounds to this:
Start up the db container separately, then running docker compose up
Run the docker compose up command as a deamon (docker compose up -d) twice. The db container starts on the first invocation, and the db-init container is able to run to completion properly, and I can see the Apollo instance.
Am I missing some step?
The text was updated successfully, but these errors were encountered:
I have run into an issue running
docker compose up
. The db-init container spawns, completes and shuts down befor the db container is ready, resulting in the container cluster to fail startup.I have found two workarounds to this:
docker compose up
docker compose up -d
) twice. The db container starts on the first invocation, and the db-init container is able to run to completion properly, and I can see the Apollo instance.Am I missing some step?
The text was updated successfully, but these errors were encountered: