I have a multi-container docker application on Github which can be accessed here. I want to deploy this docker application on Azure using the DC/OS orchestration with the help of the ACS cluster (I am able to run the application locally).
I followed this https://learn.microsoft.com/en-us/azure/container-service/container-service-setup-ci-cd guide on the azure docs and managed to deploy a sample application. I am not able to send a request to the server at that port. I tried to change the port of the docker-compose.yml file so that I can map port 5000 on the outside, to 8080 on the inside but it does not seem to work.
Code can be accessed on Github
The docker-compose.yml currently looks like this
services:
app:
build: ./application
image: ethercis-app
ports:
- "5000:8080"
depends_on:
- postgres
postgres:
build: ./postgres
image: ethercis-db