Skip to content

Commit 3d34bad

Browse files
authored
'using' is duplicated.
1 parent 4e70375 commit 3d34bad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/container-apps/containers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ Most container apps have a single container. In advanced scenarios, an app can a
132132

133133
| Setting | Description | Remarks |
134134
|---|---|---|
135-
| `image` | The container image name for your container app. | This value takes the form of `repository/<IMAGE_NAME>:<TAG>`. <br><br>Avoid using using static tags like `latest` for container images. Using static tags can lead to caching problems and can make your app difficult to troubleshoot. Instead, use unique tags for each deployment, such as a Git hash or date and time to ensure that updates are properly tracked and deployed. |
135+
| `image` | The container image name for your container app. | This value takes the form of `repository/<IMAGE_NAME>:<TAG>`. <br><br>Avoid using static tags like `latest` for container images. Using static tags can lead to caching problems and can make your app difficult to troubleshoot. Instead, use unique tags for each deployment, such as a Git hash or date and time to ensure that updates are properly tracked and deployed. |
136136
| `name` | Friendly name of the container. | Used for reporting and identification. |
137137
| `command` | The container's startup command. | Equivalent to Docker's [entrypoint](https://docs.docker.com/engine/reference/builder/) field. |
138138
| `args` | Start up command arguments. | Entries in the array are joined together to create a parameter list to pass to the startup command. |

0 commit comments

Comments
 (0)