Skip to content

Commit 7bd88b8

Browse files
Enhance ACR Build and Push Guide with update steps
1 parent 3fbb4fe commit 7bd88b8

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

docs/ACRBuildAndPushGuide.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,21 @@ docker build --no-cache -f docker/Backend.Dockerfile -t <acrloginserver>/<repo>:
3737
docker 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>
4560
docker 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

5079
Run the following command to verify that images were pushed successfully:

0 commit comments

Comments
 (0)