I'm using a custom linux image on Azure App Service to deploy my web app. Using a pipeline in gitlab I execute the following:
docker login -u "$AZURE_CI_REGISTRY_USER" -p "$AZURE_CI_REGISTRY_PASSWORD" $AZURE_CI_REGISTRY
docker pull "mine.azurecr.io/samples/base:latest"
docker build . -t "$AZURE_MINE_CI_REGISTRY_IMAGE:testing" --pull --cache-from "$AZURE_MINE_CI_REGISTRY_IMAGE:testing"
docker push "$AZURE_MINE_CI_REGISTRY_IMAGE:testing"
In azure dashboard > container settings, i set "Continuous Deployment" to On.
It works well, but I need to know when the container is up and running from gitlab after pushing the docker image so i can use the status (fail/success) for current job.
