4

With the Azure WebApp Service I can deploy a docker-compose file to Azure easily with public available docker images. I would like to know how it is possible to deploy an image hosted in a private repository respectively in Azure Container Service to Azure WebApp Service.

smichel
  • 745
  • 1
  • 7
  • 14
  • Here is the corresponding Github Issue for this topic: https://github.com/MicrosoftDocs/azure-docs/issues/9685 – smichel Jun 06 '18 at 15:05

1 Answers1

3

You can provide the following variables in the App Service's app settings to pull from a private registry: DOCKER_REGISTRY_SERVER_USERNAME, DOCKER_REGISTRY_SERVER_PASSWORD, DOCKER_REGISTRY_SERVER_URL

Robin-Manuel Thiel
  • 2,206
  • 19
  • 26
  • Exactly, but it is `docker-registry-server-user`, not `docker-registry-server-username`. It seems to be the same process as for loading docker container from ACR. Unfortunately it is not good described in the existing Microsoft docs, but meanwhile I know that people are already working on this. – smichel Jun 11 '18 at 08:24