Hello everyone
I tried all suggestions but it doesn't work for me on my Mac
I follow all the steps ,step by step, with no results.
There is my configuration,




Maybe I missed up something
Thanks in advance
_Originally posted by @adahhane in https://github.com/dotnet-architecture/eShopOnContainers/issues/1124#issuecomment-692727145_
Hello @adahhane, thank you for reaching out.
Possibly the SQL server database for the Identity Server is still holding the old value of localhost.
Could you please try to clean up the sql volume too and try following steps ?
docker聽stop $(docker聽ps -aq)
docker聽rm $(docker聽ps -aq)
docker volume聽rm $(docker volume聽ls -q)
!IMPORTANT: Above commands will clean up all running containers and it's data in your MacOS/Workstation. So you want to be careful on that.
docker-compose up sqldata
once it's ready to accept the connection then you can bring up the other container by using the following command from a seperate terminal
docker-compose up
Hope this helps !
Hello @sughosneo,
Thank you for this explanation,
I already make those steps except the : docker-compose up sqldata.
Now it works like a charm.
But i have another issue when i'm trying to connect with the mvc application, I get this error.

Do you have any idea about it ?
Thanks in advance.
Hello @sughosneo,
Thank you for this explanation,
I already make those steps except the : docker-compose up sqldata.
Now it works like a charm.But i have another issue when i'm trying to connect with the mvc application, I get this error.
Do you have any idea about it ?
Thanks in advance.
Great ! @adahhane - thanks for the update. For the "Correlation Failed" you can refer our wiki page
Thank you.
Thanks for your quickly response,
Now all work perfectly
Best regards,