I am trying to start my containers using docker/sd...
# docker
a
I am trying to start my containers using docker/sdk start command but broker is failing with following message:
Copy code
Could not wait for spryker_b2b_dev_broker_1 anymore. Container status: "unhealthy"
Due to this error, RabbitMq is not working. Can anyone please guide?
p
Hey, please provide more information for questions like that. for example: Which OS you are using, which processor do you use (m1 or intel), if it is the first time you want to start it, which deploy.*.yml file you used and what would also be nice but not obvious which version of docker/sdk you are running 🙂
👍 1
a
Hi Florian, Thanks for your reply. I am using ubuntu 20.4. Not sure what went wrong but after resetting the docker through docker/sdk reset command, it started working. 🙂
i
Hey, you can also try to inspect your container for more information:
Copy code
docker inspect --format "{{json .State.Health }}" spryker_b2b_dev_broker_1
👍 1
☝️ 1
p
good! This would have been my first proposal
i
Another thing we have experienced this error in the past was outdated local images on which the containers were built on. This could also lead into an unhealthy state. You can check your local image creation date with
docker image ls
and update them with
docker pull IMAGENAME
👍 2
a
Thanks Marcel! It's super helpful