Hey @Rohini_vaidya,
As we discussed during the community office hour, please make sure to configure your Docker Compose with like this at the top of your conatiners:
networks:
example_network:
driver: bridge
Then, in each container configuration, add:
networks:
- example_network
After that, re-run your containers for the API app and any other services you’re using — everything should work fine.
Let me know if that solves the issue