

- #Dockerfile for wordpress and drupal hosting download
- #Dockerfile for wordpress and drupal hosting free
When the App Service plan has been created, Cloud Shell shows information similar to the following example: az appservice plan create -name myAppServicePlan -resource-group myResourceGroup -sku S1 -is-linux The following example creates an App Service plan named myAppServicePlan in the Standard pricing tier ( -sku S1) and in a Linux container ( -is-linux). In Cloud Shell, create an App Service plan in the resource group with the az appservice plan create command. When the command finishes, a JSON output shows you the resource group properties. You generally create your resource group and the resources in a region near you. az group create -name myResourceGroup -location "South Central US"


To see all supported locations for App Service on Linux in Standard tier, run the az appservice list-locations -sku S1 -linux-workers-enabled command. The following example creates a resource group named myResourceGroup in the South Central US location. In Cloud Shell, create a resource group with the az group create command. For example, you can choose to delete the entire resource group in one simple step later. git clone Ī resource group is a logical container into which Azure resources, such as web apps, databases, and storage accounts, are deployed and managed. Then change to the multicontainerwordpress directory. Next, run the following command to clone the sample app repository to your tutorial directory. In Cloud Shell, create a tutorial directory and then change to it. For supported configuration options, see Docker Compose options. The configuration file can be found at Azure Samples.
#Dockerfile for wordpress and drupal hosting download
Download the sampleįor this tutorial, you use the compose file from Docker, but you'll modify it to include Azure Database for MySQL, persistent storage, and Redis. To complete this tutorial, you need experience with Docker Compose.
#Dockerfile for wordpress and drupal hosting free
If you don't have an Azure subscription, create an Azure free account before you begin. Use persistent storage for your containers.Convert a Docker Compose configuration to work with Web App for Containers.
