@@ -37,6 +37,21 @@ docker build --no-cache -f docker/Backend.Dockerfile -t <acrloginserver>/<repo>:
3737docker push < acrloginserver> /< repo> :< tagname>
3838 ```
3939
40+ If you want to update image tag and image manually you can follow below steps:
41+ - Go to your ** Container App** in the [ Azure Portal] ( https://portal.azure.com/#home ) .
42+ - In the left menu, select ** Containers** .
43+ - Under your container, update:
44+
45+ - Image source → Azure Container Registry / Docker Hub.
46+
47+ - Image name → myapp/backend.
48+
49+ - Tag → change to the new one you pushed (e.g., v2).
50+
51+ - Click ** Save** → this will create a new revision automatically with the updated image.
52+
53+ ![ alt text] ( ./images/ContainerApp.png )
54+
4055** WebApp :**
4156
4257``` bash
@@ -45,6 +60,20 @@ docker build --no-cache -f docker/Frontend.Dockerfile -t <acrloginserver>/<repo>
4560docker push < acrloginserver> /< repo> :< tagname>
4661```
4762
63+ If you want to update image tag and image manually you can follow below steps:
64+ - Go to your App Service in the [ Azure Portal] ( https://portal.azure.com/#home ) .
65+ - In the left menu, select Deployment → Deployment Center
66+ - Under Container settings, you can configure:
67+
68+ - Image Source → (e.g., Azure Container Registry / Docker Hub / Other).
69+
70+ - Image Name → e.g., myapp/backend.
71+
72+ - Tag → e.g., v1.2.3.
73+
74+ ![ alt text] ( ./images/AppServiceContainer.png )
75+
76+
4877## ✅ Verification
4978
5079Run the following command to verify that images were pushed successfully:
0 commit comments