How can we access multiple private repositories in docker-compose file?
We have to work with 4 different images from different private repositories, and looks like this is not supported yet. When is the ETA for this feature?
How can we access multiple private repositories in docker-compose file?
We have to work with 4 different images from different private repositories, and looks like this is not supported yet. When is the ETA for this feature?
Currently @LogeeswaranSaranyaCognizant-5765, there are no plans for docker compose beyond what's available. The team is evaluating options for scenarios such as this, but nothing planned. No ETA to share at the moment.
Thanks for the answer.
I am actually able to access all 4 images with Docker-compose.
But problem is one image is not serving the other one's request.
UI is exposed via the port 8080. When it receives incoming requests, it has to be served by another port 5005.
The container running in 5005 is not serving this request.
How can we fix the communication between the containers?
Containers in docker-compose are visible to each other right?
Can you clarify...
But problem is one image is not serving the other one's request.
UI is exposed via the port 8080. When it receives incoming requests, it has to be served by another port 5005.
Containers can see each other but only one image, your UI in this case, will respond to external requests. Is your UI not able to call this backend service?
Yes. 5005, though running is not serving the UI.
I gave the endpoint for 5005 as <appname>.azurewebsites.net:5005/webhook
12 people are following this question.