smichel
smichel

Reputation: 765

Azure WebApp Docker Compose Private Repository

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.

Upvotes: 4

Views: 859

Answers (1)

Robin-Manuel Thiel
Robin-Manuel Thiel

Reputation: 2256

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

Upvotes: 3

Related Questions