GCP Learning Series _ App Engine Part 3
![](https://igreendata.com.au/wp-content/uploads/2021/09/2000px-GCP-blue-background-2.jpg)
Overview
This blog will show how to deploy image from Container Registry to Google App Engine
![](https://igreendata.com.au/wp-content/uploads/2021/09/3-1-1024x338.png)
Configuration
To deploy an app into App Engine, need to have app.yaml file configured as below
![](https://igreendata.com.au/wp-content/uploads/2021/09/3-2.png)
Then run command :
gcloud app deploy — image-url=gcr.io/gcpnikki/appengine/demo:latest
![](https://igreendata.com.au/wp-content/uploads/2021/09/3-3.png)
![](https://igreendata.com.au/wp-content/uploads/2021/09/3-4.png)
After successful deployment, we can navigate to the AppEngine dashboard ( Instances/Services ) to review the changes
![](https://igreendata.com.au/wp-content/uploads/2021/09/3-5.png)
gcloud app browse
Using gcloud app browse command to view the application been deployed and specify the endpoint been exposed, can able to hit the endpoints
![](https://igreendata.com.au/wp-content/uploads/2021/09/3-6.png)
Happy Learning !
Bharathy Poovalingam
#GCP #Learning #Serverless #AppEngine